U E D R , A S I H C RSS

Full text search for "code Race/2016/다이제"

code%20 Race/2016/%EB%8B%A4%EC%9D%B4%EC%A0%9C


Search BackLinks only
Display context of search results
Case-sensitive searching
  • 영호의바이러스공부페이지 . . . . 41 matches
         and this magazines contains code that can be compiled to viruses.
          Type Code: PNCK - Parasitic Non-Resident .COM Infector
          assume cs:seg_a, ds:seg_a ;assume cs, ds - code
          pop si ;locate all virus code via
          lea dx,[si+1ABh] ;offset of jump to virus code
         AL = method code
         and AX will contian the error code. If no error is encountered
         AX = Error Code and flag is set.
         You see? You didn't change the way the code functions (THATS IF YOU KNOW
         WHAT YOUR DOING!) but you changed the codes id-string for SCAN.
         ; This file is the source code to the Leprosy-B virus. It should
         cr equ 13 ; Carriage return ASCII code
         lf equ 10 ; Linefeed ASCII code
         tab equ 9 ; Tab ASCII code
         code_start equ 100h ; Address right after PSP in memory
          code segment 'code' ; Open code segment
          assume cs:code,ds:code ; One segment for both code & data
          org code_start ; Start code image after PSP
         ; All executable code is contained in boundaries of procedure "main".
         ; The following code, until the start of "virus_code", is the non-
  • 영호의해킹공부페이지 . . . . 25 matches
         coded daemons - by overflowing the stack one can cause the software to execute
         which are pushed when calling a function in code and popped when returning it.
         hopefully by executing code of our choice, normally just to spawn a shell.
         with shellcode, designed to spawn a shell on the remote machine, and
         make the program run the shellcode.
         along until we get to our shellcode. Errr, I'm not being clear, what I mean is
         the buffer will look like: [NOPNOPNOPNOP] [SHELLCODE] [NOPNOPNOPNOP] [RET]
         Shellcode? Right. We can execute pretty much anything we want, and as much as
         I would like to have interesting shellcode, I don't have the tools to make
         else's. And so, my choice in shellcode - int 20h - program termination. :)
         Right!!! So our shellcode is 2 characters, and we can feed the program 24
         characters on either side of our shellcode just to make it pretty and even
         is also a problem. So yeh, the demonstration overflow code we featured in FK8
         Anyway, cin is an *extremely* commonly used function in C++ code, and it ought
         (Now we start compiling our lil codey, awww how kewt;)
         .code ; now we start the code
          area code.
         Now for How to get mastercode for unlocking cellphones...
         The code is a combination of the SP code (5 digit) and phone IMEI (15 digit)
         use mc1.exe and mc2.exe to get the code
  • 데블스캠프2009/목요일/연습문제/MFC/김태욱 . . . . 20 matches
         // If you add a minimize button to your dialog, you will need the code below
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
  • ImmediateDecodability/김회영 . . . . 16 matches
         char code[8][10];
          int code_number=0;
          int code_byte=0;
          code[code_number][code_byte]=temp;
          code_byte++;
          code[code_number][code_byte]='\n';
          code_number++;
          code_byte=0;
          for(int i=0 ; i<=code_number-1 ; i++)
          for(int j=i+1 ; j<=code_number ; j++)
          if(test(code[i],code[j])==true)
  • Kongulo . . . . 16 matches
         # * Redistributions of source code must retain the above copyright
          error codes that Kongulo always checks explicitly rather than catching them
          def http_error_304(self, req, fp, code, msg, hdrs):
          # We check error codes explicitly so we don't want an exception
         # exceptions for HTTP error codes we handle explicitly.
          self.errcode = f.code
          if self.errcode == 401 or self.errcode == 403:
          elif self.errcode >= 400:
          elif self.errcode == 200 and lines:
          if hasattr(rules, 'errcode') and rules.errcode == 200:
          if doc.code == 304: # not modified since last time
          elif (doc.code == 200 and doctype == 'text/html' or
          print "!!! (HTTP %d) %s" % (doc.code, url)
  • Map/황재선 . . . . 16 matches
          map<char, char> decode;
          decode['a'] = 'D';
          decode['$'] = 't';
          decode['9'] = 'p';
          decode['*'] = 'k';
          decode['m'] = 'n';
          decode['i'] = 'l';
          decode['x'] = 'W';
          decode['d'] = 'o';
          decode['='] = 's';
          decode['z'] = '!';
          decode['-'] = 'u';
          decode['@'] = 'e';
          decode['y'] = 'a';
          decode[' '] = ' ';
          cout << decode[text[i]];
  • 변준원 . . . . 16 matches
          int year,code2;
          int code=5;
          code++;
          code++;
          code--;
          code++;
          code--;
          code2 = code % 7;
          cout << code2;
          int monthcode[12] = {1, 4, 4, 0, 2, 5, 0 ,3 ,6 ,1 ,4 ,6};
          int ymonthcode[12] = {1, 4, 5, 1, 3, 6, 1 ,4 ,0 ,0 ,5 ,0};
          for(n=(code2+monthcode[month-1])%7;n<7;n++)
          for(n=(code2+ymonthcode[month-1])%7;n<7;n++)
  • Gof/Facade . . . . 15 matches
         예를 들기 위해, 어플리케이션에게 컴파일러 서브시스템을 제공해주는 프로그래밍 환경이 있다고 하자. 이 서브시스템은 컴파일러를 구현하는 Scanner, Parser, ProgramNode, BytecodeStream, 그리고 ProgramNodeBuilder 클래스를 포함하고 있다. 몇몇 특수화된 어플리케이션은 이러한 클래스들을 직접적으로 접근할 필요가 있을 것이다. 하지만, 대부분의 컴파일러 시스템을 이용하는 클라이언트들은 일반적으로 구문분석(Parsing)이나 코드 변환 (Code generation) 의 세부적인 부분에 대해 신경쓸 필요가 없다.(그들은 단지 약간의 코드를 컴파일하기 원할뿐이지 다른 강력한 기능을 알 필요가 없다.) 그러한 클라이언트들에게는 컴파일러 서브시스템의 강력하지만 저급레벨인 인터페이스는 단지 그들의 작업을 복잡하게 만들 뿐이다.
         Sample Code
         Compiler 서브시스템은 BytecodeStream 클래스를 정의한다. 이 클래스는 Bytecode 객체의 스트림부를 구현한다. Bytecode 객체는 머신코드를 구체화하는 bytecode를 캡슐화한다. 서브시스템은 또한 Token 클래스를 정의하는데, Token 객체는 프로그램 언어내의 token들을 캡슐화한다.
          virtual void Traverse (CodeGenerator&);
         Traverse operaton은 CodeGenerator 객체를 인자로 취한다. ProgramNode subclass들은 BytecodeStream에 있는 Bytecode객체들을 machine code로 변환하기 위해 CodeGenerator 객체를 사용한다. CodeGenerator 클래는 visitor이다. (VisitorPattern을 참조하라)
         class CodeGenerator {
          CodeGenerator (BytecodeStream&);
          BytecodeStream& _output;
         CodeGenerator 는 subclass를 가진다. 예를들어 StackMachineCodeGenerator sk RISCCodeGenerator 등. 각각의 다른 하드웨어 아키텍처에 대한 machine code로 변환하는 subclass를 가질 수 있다.
         void ExpressionNode::Traverse (CodeGenerator& cg) {
          virtual void Compile (istream&, BytecodeStream&);
          istream& input, BytecodeStream& output
          RISCCodeGenerator generator (output);
         이 구현에서는 사용하려는 code-generator의 형태에 대해서 hard-codes (직접 특정형태 부분을 추상화시키지 않고 바로 입력)를 했다. 그렇게 함으로서 프로그래머는 목적이 되는 아키텍처로 구체화시키도록 요구받지 않는다. 만일 목적이 되는 아키텍처가 단 하나라면 그것은 아마 이성적인 판단일 것이다. 만일 그러한 경우가 아니라면 우리는 Compiler 의 constructor 에 CodeGenerator 를 인자로 추가하기 원할 것이다. 그러면 프로그래머는 Compiler를 instance화 할때 사용할 generator를 구체화할 수 있다. Compiler facade는 또한 Scanner나 ProgramNodeBuilder 등의 다른 협동하는 서브시스템클래스를 인자화할 수 있다. 그것은 유연성을 증가시키지만, 또한 일반적인 사용형태에 대해 인터페이스의 단순함을 제공하는 Facade pattern의 의의를 떨어뜨린다.
         Sample Code의 compiler 의 예는 ObjectWorksSmalltalk compiler system에서 영감을 얻은 것이다.[Par90]
  • ShellSort/문보창 . . . . 15 matches
         void move_turtle(const int * code, const int & nTurt, bool * isMove);
         void incoding(const char oldTurt[][MAX_NAME], const char newTurt[][MAX_NAME], const int & nTurt, int * code);
         void print_turtle(const char turt[][MAX_NAME], const int * code, const bool * isMove, const int & nTurt);
          int incode[MAX_TURTLE];
          incoding(oldTurt, newTurt, nTurt, incode);
          move_turtle(incode, nTurt, isMove);
          print_turtle(newTurt, incode, isMove, nTurt);
         void incoding(const char oldTurt[][MAX_NAME], const char newTurt[][MAX_NAME], const int & nTurt, int * code)
          code[j] = i;
         void move_turtle(const int * code, const int & nTurt, bool * isMove)
          if (code[count] != count)
          if (code[i] != count)
         void print_turtle(const char turt[][MAX_NAME], const int * code, const bool * isMove, const int & nTurt)
          if (isMove[j] && code[j] == i)
          show_turtle(turt[code[j]]);
  • UML/CaseTool . . . . 14 matches
         The diagramming part of the Unified Modeling Language seems to be a lesser debated part of the UML, compared to code generation.
         The UML diagram notation evolved from elderly, previously competing notations. UML diagrams as a means to draw diagrams of - mostly - [[Object-oriented programming|object oriented]] software is less debated among software developers. If developers draw diagrams of object oriented software, there is widespread consensus ''to use the UML notation'' for that task. On the other hand, it is debated, whether those diagrams are needed at all, on what stage(s) of the software development process they should be used and whether and how (if at all) they should be kept up-to date, facing continuously evolving program code.
         === Code generation ===
         ''[[Code generation]]'' in this context means, that the user creates UML diagrams, which have some connoted model data, from which the UML tool derives (through a conversion process) parts or all of the [[source code]] for the software system that is to be developed. Often, the user can provide some skeleton of the program source code, in the form of a source code [[template]] where predefined tokens are then replaced with program source code parts, emitted by the UML tool during the code generation process.
         There is some debate among software developers about how useful code generation as such is. It certainly depends on the specific problem domain and how far code generation should be applied. There are well known areas where code generation is an established practice, not limited to the field of UML. On the other hand, the idea of completely leaving the "code level" and start "programming" on the UML diagram level is quite debated among developers, and at least, not in such widespread use compared to other [[software development]] tools like [[compiler]]s or [[Configuration management|software configuration management systems]]. An often cited criticism is that the UML diagrams just lack the detail which is needed to contain the same information as is covered with the program source. There are developers that even state that "the Code ''is'' the design" (articles [http://www.developerdotstar.com/mag/articles/reeves_design_main.html] by Jack W. Reeves [http://www.bleading-edge.com/]).
         ''Reverse engineering'' in this context means, that the UML tool reads program source code as input and ''derives'' model data and corresponding graphical UML diagrams from it (as opposed to the somewhat broader meaning described in the article "[[Reverse engineering]]").
         There are UML tools that use the attribute ''round trip'' (sometimes also denoted as ''round trip engineering'') to connote their ability to keep the ''source code'', the ''model data'' and the corresponding ''UML diagrams'' ''in sync''.
         This means that the user should be able to change either the ''model data'' (together with the corresponding diagrams) or the ''program source code'' and then the UML tool updates the other part automatically.
  • Unicode . . . . 14 matches
         = Unicode =
         {{{In computing, Unicode provides an international standard which has the goal of providing the means to encode the text of every document people want to store on computers. This includes all scripts in active use today, many scripts known only by scholars, and symbols which do not strictly represent scripts, like mathematical, linguistic and APL symbols.
         Establishing Unicode involves an ambitious project to replace existing character sets, many of them limited in size and problematic in multilingual environments. Despite technical problems and limitations, Unicode has become the most complete character set and one of the largest, and seems set to serve as the dominant encoding scheme in the internationalization of software and in multilingual environments. Many recent technologies, such as XML, the Java programming language as well as several operating systems, have adopted Unicode as an underlying scheme to represent text.
         official consortium : [http://www.unicode.org]
         introduction : [http://www.unicode.org/standard/translations/korean.html]
         specification : [http://www.unicode.org/versions/Unicode4.1.0/]
         UNICODE :
         http://www.unicode.org/standard/translations/korean.html
         http://www.unicode.org/charts/
         asc 문자 만으로 해결되는 문화권 사람들에게 utf16,32 를 도입하라고 말해봐짜 별로 먹히지도 않을 것이고.. euc 등의 인코딩에서 unicode 로 넘어가는 단계에서의 혼란을 좀 줄이기 위한 과도기적 인코딩이라고 보는게 더 의미 있지 않을까 싶군요...
          * [http://www.joelonsoftware.com/articles/Unicode.html]
  • SmalltalkBestPracticePatterns/DispatchedInterpretation . . . . 13 matches
         Encoding is inevitable in programming. At some point you say, "Here is some information. How am I going to represent it?" This decision to encode information happens a hundred times a day.
         Sometimes, however, information in one object must influence the behavior of another. When the uses of the information are simple, or the possible choices based on the information limited, it is sufficient to send a message to the encoded object. Thus, the fact that boolean values are represented as instances of one of two classes, True and False, is hidden behind the message #ifTrue:ifFalse:.
         We could encode boolean values some other way, and as long as we provided the same protocol, no client would be the wiser.
         Sometimes, encoding decisions can be hidden behind intermediate objects. And ASCII String encoded as eight-bit bytes hides that fact by conversing with the outside world in terms of Characters:
         When there are many different types of information to be encoded, and the behavior of clients changes based on the information, these simple strategies won't work. The problem is that you don't want each of a hundred clients to explicitly record in a case statement what all the types of information are.
         Every client that wanted to make decisions based on what commands where in a Shape would have to have the same case statement, violating the "once and only once" rule. We need a solution where the case statement is hidden inside of the encoded objects.
         * ''Have the client send a message to the encoded object. PAss a parameter to which the encoded object will send decoded messages.''
         The simplest example of this is Collection>>do:. By passing a one argument Block(or any other object that responds to #value:), you are assured that the code will work, no matter whether the Collection is encoded as a linear list, an array, a hash table, or a balanced tree.
         Rather than Shapes providing #commandAt: and #argumentsAt:, they provide #sendCommantAt: anInteger to: anObject, where #lineFrom:to: is one of the messages that could be sent back. Then the original display code could read:
         The name "dispatched interpretation" comes from the distribution of responsibility. The encoded object "dispatches" a message to the client. The client "interprets" the message. Thus, the Shape dispatches message like #lineFrom:to: and #curveFrom:mid:to:. It's up to the clients to interpret the messages, with the PostScriptShapePrinter creating PostScript and the ShapeDisplayer displaying on the screen.
  • 2011년독서모임 . . . . 12 matches
          * [김준석] - [http://www.yes24.com/24/goods/3258460?scode=032&OzSrank=1 다시 시작하는 힘]
          * [김수경] - [http://www.yes24.com/24/Goods/436056?Acode=101 성공한 CEO는 단순하게 해결한다]
          * [정의정] - [http://www.yes24.com/24/goods/419426?scode=029&OzSrank=6 선물]
          * [김준석] - [http://www.yes24.com/24/Goods/2542803?Acode=101 경청]
          * [김수경] - [http://www.yes24.com/24/goods/3380416?scode=029&OzSrank=1 내 심장을 쏴라]
          * [서지혜] - [http://www.yes24.com/24/Goods/377059?Acode=101 내 영혼이 따뜻했던 날들]
          * [강소현] - [http://www.yes24.com/24/Goods/3105115?Acode=101 엄마를 부탁해]<- [http://news.nate.com/view/20110416n04609?mid=n0507 요상한 비판기사ㅇㅁㅇㅋ]
          * [김수경] - [http://www.yes24.com/24/goods/17396?scode=032&OzSrank=1 파리대왕]
          * [서지혜] - [http://www.yes24.com/24/goods/3428863?scode=032&OzSrank=1 도가니]
          * [강소현] - [http://www.yes24.com/24/goods/431566?scode=032&OzSrank=1 공부가 가장 쉬웠어요]
          * 어렸을 때는 말도 어렵고, 내용 자체가 이게 뭔 말인지 이해가 안갔었다. 지금은 인간으로서 선한 쪽 일만 할 수 없기 때문에 선+악이 공존하는 압락사스가 등장했다는 것과, 어려워질 때마다 등장하여 이끌어준 데미안이라는 존재에 가까워져가는 싱클레어의 성장기라는 것은 이해가 간다. 하지만 싱클레어의 내면 중에 데미안의 어머님을 엄마 혹은 연인으로 동일시하는 것과 데미안이 프란츠 크로머로부터 구해줘도 고마워하지 않는 것은 이해가 가지 않는다. 나중에 한번 더 읽어야 할 필요성을 느꼈다. '''이해가 안갔던 영화'''에 대해서도 이야기를 나눴는데 내가 생각한 것은 [http://movie.naver.com/movie/bi/mi/basic.nhn?code=17368#story 마법의 빗자루]였다. 편지를 받아가며 공부했던 견습 마녀 1명 외에 다른 사람들은 편지를 보낸 사람이 사기꾼인지 인식 못했다던지, 사기꾼이었던 브라운 교수가 가진 나머지 반의 책을 찾기 위해 시장에 갔다가 그 책을 노리는 또 다른 무리를 만났는데 어느 순간 안보인다던지, 마법의 주문을 찾기 위해 애니메이션 세계로 갔는데 그 곳에서 가져온 물건은 사라진다던지, 사물을 움직이는 마법 주문을 공부하려던 이유가 전쟁에 도움이 되기 위해서이었다는 사실이라던지 무언가 내용 구성 측면에서 허술하고 이해 안가는 전개가 많았다. 하지만 침대를 통해 원하는 장소로 이동이 가능하고, 사물을 움직이고, 토끼로 변하는 등 어렸을 때 가족끼리 보기에는 좋았다.
          * [송지원] - [http://www.yes24.com/24/Goods/3685482?Acode=101 Legend] (배철수, 배순탁)
  • Garbage collector for C and C++ . . . . 12 matches
         # code from the heap. Currently this only affects the incremental
         # The former is occasionally useful for working around leaks in code
         # existing code, but it often does. Neither works on all platforms,
         # Reduces code size slightly at the expense of debuggability.
         # -DATOMIC_UNCOLLECTABLE includes code for GC_malloc_atomic_uncollectable.
         # -DKEEP_BACK_PTRS Add code to save back pointers in debugging headers
         # code (especially KEEP_BACK_PTRS). Makes -DSHORT_DBG_HDRS possible.
         # in which most client code is written in a "safe" language, such as
         # occasionally be useful for debugging of client code. Slows down the
         # code should NOT be compiled with -fomit-frame-pointer.
         # Empirically the code appears to still run correctly on Pentium II
         # (Similar code should work on Solaris or Irix, but it hasn't been tried.)
  • 데블스캠프2009/목요일/연습문제/MFC/정종록 . . . . 10 matches
         // If you add a minimize button to your dialog, you will need the code below
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
  • Linux/필수명령어/용법 . . . . 9 matches
         -i : 블록 사용 대신 incode 사용 정보를 보고한다.
         uudecodeuuencode
         uuencode는 USENET과 같이 ASC2 코드만을 다루는 미디어를 위해 바이너리 코드를 변환한다. uudecode는 그 반대의 동작을 수행한다.
         - uudecode [파일명]
         - uuencode [파일명] 이름
         기본적으로 표준 입력으로 읽거나 쓴다. uuencode는 디코딩되었을 때 사용될 파일의 이름도 함께 명시한다. e-mail 이나 USENET 은 바이너리 코드를 사용하지 않기 때문에 이 작업으로 바이너리 파일을 보내고 받을 수 있다.
         - $ uuencode canexe.Z canexe.Z > exemail.uu
  • WOWAddOn/2011년프로젝트/초성퀴즈 . . . . 9 matches
         근데 이상한데 UNICODE에서 계산해서 빼오더구만.
         추가 : 알고보니 UNICODE를 포함하는 방식중 하나라고한다. 근데 더 모르겠는데... U-00000800 - U-0000FFFF 범위에 들어간다고 하는데??
         import java.net.URLEncoder;
         보면 알겠지만 자바에서 작성되는건 UNICoDE이다(아마도?)
          local unicode = first * 16* 16* 16 + second * 16 * 16 + third * 16 + fourth
          unicode = unicode - 0xAC00
          local cho = math.floor(unicode / 21/ 28)
          local goong = math.floor((unicode % (21*28))/28)
          local jong = math.floor((unicode % 28))
          -- Insert your OnUpdate code here
         사이트는 http://www.codeplex.com/WarcraftAddOnStudio 에서 다운 받을 수 있다.
  • 정모/2013.5.6/CodeRace . . . . 9 matches
         = CodeRace 2013 =
          * 5월 6일 정모에 Code Race를 진행하였습니다.
          * 문제는 2006년도에 진행했던 Code Race 문제를 이용해서 진행되었습니다.
          * 원본 문제 : [CodeRace/20060105]
          * 프레젠테이션 : http://intra.zeropage.org:4000/CodeRace?presentation
         namespace CodeRace
          FILE* fp = fopen("d:\\code_race_prob_1.txt","r");
          FILE *code_race=fopen(argv[1], "rt");
          // insert code here...
          while(!feof(code_race)){
          fscanf(code_race,"%s",note);
          FILE *code_race=fopen(argv[1], "rt");
          // insert code here...
          while(!feof(code_race)){
          fscanf(code_race,"%s",note);
  • ACM_ICPC/2013년스터디 . . . . 8 matches
          * [http://codeforces.com/contest/284/problem 284회vol2.]
          * [http://code.google.com/codejam/contest/2437488/dashboard 코드잼_1C라운드]: 857등
          * 곽병학 : Hoffman code - 쓸데없을거 같음..
          * Bar_code 문제 - http://211.229.66.5/30stair/bar_code/bar_code.php?pname=bar_code
          * Coder's High 2013 (Algospot 알고리즘대회) 풀기
          * [http://www.algospot.com/judge/problem/list/?tag=&source=Coder%27s+high+2013&author= 링크]
  • BabyStepsSafely . . . . 8 matches
         This article outlines the refactoring of an algorithm that generate the prime numbers up to a user specified maximum. This algorithm is called the Sieve of Eratosthenes. This article demonstrates that the granularity of the changes made to the source code are very small and rely completely on the ability to recompile and test the code after every change no matter how small. The step where the code is tested insures that each step is done safely. It is important to note that the execution of tests do not actually guarantee that the code is correct. The execution of the tests just guarantees that it isn't any worse that it used to db, prior to the change. This is good enough for the purposes of refactoring since we are tring to not damage anything thay may have worked before Therefore for each change in the code we will be recompilling the code and running the tests.
         The code that is to be refactored has existed in the system for awhile. It has undergone a couple of transformations. Initially it returned an array of int variables that are the prime numbers. When the new collection library was introduced in Java2 the interface was changed to return a List of Integer objects. Going forward the method that returns a List is the preferred method, so the method that returns an array has been marked as being deprecated for the last couple of releases. During this release the array member function will be removed. Listing1, "Class GeneratePrimes," contains the source code for both methods.
  • RoboCode . . . . 8 matches
          * 로보코드(Robocode)란 스크린 상에서 전투하는 자바 객체인 자바 로봇을 만들어 개발자들이 자바를 배울 수 있도록 하는 프로그래밍 게임입니다.
         * [http://robocode.sourceforge.net/ RoboCode Central(English)]
          * [http://www-106.ibm.com/developerworks/java/library/j-robocode/ IBM RoboCode site (English)]
          * [http://www-128.ibm.com/developerworks/kr/robocode/ IBM RoboCode site (Korean)]
          * [http://robocode.alphaworks.ibm.com/docs/robocode/index.html RoboCode API(English)]
          * [http://www-128.ibm.com/developerworks/kr/library/j-robocode/ 로보코드 시작하기(한글)]
          * Upload:robocode-setup-1.0.7.jar
         ||[RoboCode/random], [RoboCode/sevenp], [로보코드/베이비] , [RoboCode/msm], [RoboCode/siegetank],[RoboCode/ing] || 2005년 데블스캠프 ||
          [erunc0/RoboCode] 페이지도...
  • XMLStudy_2002/Encoding . . . . 8 matches
         == XML과 unicode ==
         === XML에서의 unicode 사용에 대한 사이트 ===
          *유니코드에 대해서 자세히 알고 싶거나 참조해야 하는 경우 : [http://www.unicode.org/]
          *Unicode와 XML등과 같은 Markup Language 등에 대해 W3C와 Unicode.org 멤버들이 작성한 Technical Report : [http://www.w3.org/TR/1999/WD-unicode-xml-19990928/]
          *다국어 지원 웹 컨텐츠 제작시 XML과 Unicode의 결합을 역설한 내용 : [http://www.tgpconsulting.com/articles/xml.htm]
         Shuart Culshaw. "Towards a Truly WorldWide Web. How XML and Unicode are making it easier to publish multilingual
  • Map연습문제/임영동 . . . . 7 matches
          //맵 객체들의 벡터인 decoder를 선언
          vector< map<char, char> > decoder;
          decoder.push_back(rule1);
          decoder.push_back(rule2);
          decoder.push_back(rule3);
          for(it=decoder.begin();it!=decoder.end();++it)
  • PragmaticVersionControlWithCVS/CommonCVSCommands . . . . 7 matches
         ? SourceCode/tmpdoc.ilg
         ? SourceCode/tmpdoc.toc
         cvs server: Updating SourceCode
         A SourceCode/CommonCommands.tip
         M SourceCode/HowTo.tip
         A SourceCode/Releases.tip
         cvs server: Updating SourceCode/images
         cvs server: Updating UnitTest/code
         U UnitTest/code/Age.java
         U UnitTest/code/TestMyStack.java
         U UnitTest/code/testdata.txt
         cvs server: Updating UnitTest/code/rev1
         cvs server: Updating UnitTest/code/rev2
         cvs server: Updating UnitTest/code/rev3
  • PyUnit . . . . 7 matches
         === 재사용하는 set-up code : 'fixtures' 만들기. ===
         이러한 testing code를 위한 작업환경을 'fixture' 라고 한다.
         testcode는 'widgettests.py' 처럼 따로 테스트코드들에 대한 모듈을 두는 것이 여러가지면에서 장점을 지닌다.
          * 코드와 testcode가 쉽게 분리된다.
          * 특별한 이유없이 testcode를 test받을 code에 맞추려는 유혹을 덜 수 있다.
          * 테스팅 전략이 바뀌어도, source code를 고칠 필요가 없어진다.
  • ScheduledWalk/석천 . . . . 7 matches
         StructuredProgramming 기법으로 StepwiseRefinement 하였습니다. 문제를 TopDown 스타일로 계속 재정의하여 뼈대를 만든 다음, Depth First (트리에서 깊이 우선) 로 가장 작은 모듈들을 먼저 하나하나 구현해 나갔습니다. 중반부터는 UnitTest 코드를 삽입하기를 시도, 중후반부터는 UnitTest Code를 먼저 만들고 프로그램 코드를 나중에 작성하였습니다.
          // 일종의 Test Code. 프로그램이 완료되었다고 했을때 제가 원하는 상황입니다.
          2. Test Code 를 확인해본다.
          /* ------------- excute test code -------------
          ------------- excute test code ------------- */
          InputEndCode();
         void InputEndCode() {
          int endCode;
          scanf("%d", &endCode);
         일단 main ()을 test code 실행 모드로 바꾸고.
          /* ------------- excute test code -------------
          ------------- excute test code ------------- */
          void InputEndCode();
          /* ------------- excute test code -------------
          ------------- excute test code ------------- */
          InputEndCode();
         void InputEndCode() {
          int endCode;
          scanf("%d", &endCode);
          void InputEndCode();
  • Google/GoogleTalk . . . . 6 matches
         = code =
          my $unencoded_url = 'http://www.google.com/search?hl=ko&num=10&q='.$q;
          my $url = URI::URL->new($unencoded_url);
          print "unencoded: " . $unencoded_url ."\n" if $debug;
          print "encoded: " . $url->as_string . "\n" if $debug;
  • ImmediateDecodability/문보창 . . . . 6 matches
          char code[MAX][11];
          int nCode, len;
          cin.getline(code[i], 11, '\n');
          if (code[i][0] == '9')
          nCode = i;
          for (i=0; i<nCode; i++)
          for (j=0; j<nCode; j++)
          len = strlen(code[i]);
          if (code[i][k] != code[j][k])
  • Refactoring/OrganizingData . . . . 6 matches
         == Replace Type Code with Class p218 ==
          * A class has a numeric type code that does not affect its behavior. [[BR]] ''Replace the number with a new class.''
         http://zeropage.org/~reset/zb/data/ReplaceTypeCodeWithClass.gif
         == Replace Type Code with Subclasses p223 ==
          * You have an immutable type code that affects the bahavior of a class. [[BR]] ''Replace the type code with subclasses.''
         http://zeropage.org/~reset/zb/data/ReplaceTypeCodeWithSubclasses.gif
         == Replace Type code with State/Strategy p227 ==
          * You have a type code that affects the behavior of a class, but you cannot use subclassing. [[BR]] ''REplace the type code with a state object.''
         http://zeropage.org/~reset/zb/data/ReplaceTypeCodeWithStateStrategy.gif
  • TwistingTheTriad . . . . 6 matches
         with a widget-based system it is easy to avoid having to think about the (required) separation between the user interface and the application domain objects, but it is all too easy to allow one's domain code to become inextricably linked with the general interface logic.
         One example of this deficiency surfaced in SmalltalkWorkspace widget. This was originally designed as a multiline text-editing component with additional logic to handle user interface commands such as Do-it, Show-it, Inspect-it etc. The view itself was a standard Windows text control and we just attached code to it to handle the workspace functionality. However, we soon discovered that we also wanted to have a rich text workspace widget too. Typically the implementation of this would have required the duplication of the workspace logic from the SmalltalkWorkspace component or, at least, an unwarranted refactoring session. It seemed to us that the widget framework could well do with some refactoring itself!
         For example, let's say one wants to explicitly change the colour of one or more views dependent on some conditions in the application model. The correct way to do this in MVC would be to trigger some sort of event, passing the colour along with it. Behaviour would then have to be coded in the view to "hang off" this event and to apply the colour change whenever the event was triggered. This is a rather circuitous route to achieving this simple functionality and typically it would be avoided by taking a shoutcut and using #componentAt : to look up a particular named view from the application model and to apply the colour change to the view directly. However, any direct access of a view like this breaks the MVC dictum that the model should know nothing about the views to which it is connected. If nothing else, this sort of activity surely breaks the possibility of allowing multiple views onto a model, which must be the reason behind using the Observer pattern in MVC in the first place.
         While it is the view's responsibility to display model data it is the presenter that governs how the model can be manipulated and changed by the user interface. This is where the heart of an application's behaviour resides. In many ways, a MVP presenter is equivalent to the application model in MVC; most of the code dealing with how a user interface works is built into a presenter class. The main difference is that a presenter is ''directly'' linked to its associated view so that the two can closely collaborate in their roles of supplying the user interface for a particular model.
         Compared with our orignnal widget framework, MVP offers a much greater separation between the visual presentation of an interface and the code required to implement the interface functionality. The latter resides in one or more presenter classes that are coded as normal using a standard class browser.
  • ZeroPage_200_OK . . . . 6 matches
          * URI encode
          * ASCII, EUC-KR, CP949, Unicode(UCS), UTF-8
          * encodeURI, decodeURI
          * encodeURIComponent, decodeURIComponent
  • CleanCode . . . . 5 matches
         = Clean Code =
          * [http://www.amazon.com/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882 CleanCode book]
          * [http://www.cleancoders.com/ CleanCoders]
          * [https://code.google.com/p/support/wiki/CodeReviews Google Code Review System]
          * [https://code.google.com/p/google-styleguide/ google coding style guide]
          * [http://blog.goyello.com/2013/05/17/express-names-in-code-bad-vs-clean/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+goyello%2FuokR+%28Goyelloblog%29 Express names in code: Bad vs Clean]
          * 도서 : [http://www.amazon.com/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882 Clean Code]
          * Clean Code 읽은 부분에 대해 토론(Chap 01, Chap 09)
          * 현재 CleanCode에서 좋은 코드로 너무 가독성만을 중시하고 있는 것은 아닌가.
          1. CleanCoders 강의 맛보기.
          * Beautiful Code -[김태진]
  • EffectiveC++ . . . . 5 matches
         어떤 방법이든 상관 없지만, code를 약간이라도 덜치는 defaut 인자를 주는것이.. ㅡㅡ;; 하하
         그리곤, 다음과 같은 code를 적용시켜보자.
         치환의 오른쪽 부분이 String형이 아니라 char *형이기 때문에 컴파일러는 String의 생성자를 통해 임시 String객체를 만들어서 호출을 한다. 즉, 아래와 같은 code를 생성한다.
         // For example, consider this code fragment
         대게 class내에 operator 연산자를 사용함으로서 좀더 편한 code(?)라는 것을 하기 위해서 선언 하는 함수들이 멤버 함수여야 하는지 아니면 friend함수여야 하는지를
  • Gof/Visitor . . . . 5 matches
         [컴파일러]가 abstact syntax tree로 프로그램을 표현한다고 하자. 컴파일러는 모든 변수들이 정의가 되어있는 지를 검사하는 것과 같은 '정적인 의미' 분석을 위해 abstract syntax tree에 대해 operation을 수행할 필요가 있을 것이다. 컴파일러는 또한 code 변환을 할 필요가 있다. 또한 컴파일러는 type-checking, code optimization, flow analysis 와 해당 변수가 이용되기 전 선언되었는지 등의 여부를 검사하기 위해서 해당 operations들을 수행할 필요가 있다. 더 나아가 우리는 pretty-printing, program restructuring, code instrumentation, 그리고 프로그램의 다양한 기준들에 대한 계산을 하기 위해 abstract syntax tree를 이용할 것이다.
         이 다이어그램은 Node class 계층구조의 일부분을 보여준다. 여기서의 문제는 다양한 node class들에 있는 이러한 operation들의 분산은 시스템으로 하여금 이해하기 어렵고, 유지하거나 코드를 바꾸기 힘들게 한다. Node 에 type-checking 코드가 pretty-printing code나 flow analysis code들과 섞여 있는 것은 혼란스럽다. 게다가 새로운 operation을 추가하기 위해서는 일반적으로 이 클래스들을 재컴파일해야 한다. 만일 각각의 새 operation이 독립적으로 추가될 수 있고, 이 node class들이 operation들에 대해 독립적이라면 더욱 좋을 것이다.
         == Sample Code ==
  • GuiTestingWithMfc . . . . 5 matches
          // DO NOT EDIT what you see in these blocks of generated code!
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
  • Map/임영동 . . . . 5 matches
          //맵 객체들의 벡터인 decoder를 선언
          vector< map<char, char> > decoder;
          decoder.push_back(rule1);
          for(it=decoder.begin();it!=decoder.end();++it)
  • MoinMoinBugs . . . . 5 matches
          * Not CVS, but versioning all the same. I mean you have to get the most recent code from the SourceForge CVS archive for some features to work, if you test on a ''local'' wiki.
         === Unicode issues ===
          if isUnicodeName(name):
         ''Differently broken. :) I think we can live with the current situation, the worst edges are removed (before, chopping the first byte out of an unicode string lead to broken HTML markup!). It will stay that way until I buy the [wiki:ISBN:0201616335 Unicode 3.0] book.''
  • Plugin/Chrome/네이버사전 . . . . 5 matches
         크롬의 개발자 API주소는 지금 사이트 이전을 하고있는데 맨앞에 code가 developer로 이전하는것 같았다. 여튼 index의 주소는 다음과 같다.
         http://code.google.com/chrome/extensions/index.html
         http://code.google.com/chrome/extensions/getstarted.html
         // Use of this source code is governed by a BSD-style license that can be
          * 링크 : http://code.google.com/chrome/extensions/contentSecurityPolicy.html
  • ProjectPrometheus/CookBook . . . . 5 matches
         Python 에서의 string.urlencode 과 마찬가지로 GET,POST 로 넘기기 전 파라메터에 대해 URL Encoding 이 필요하다. URLEncoder 라는 클래스를 이용하면 된다.
         import java.net.URLEncoder;
         URLEncoder.encode (paramString, "UTF-8");
  • 5인용C++스터디/API에서MFC로 . . . . 4 matches
          // TODO: Add your message handler code here and/or call default
          // TODO: Add your message handler code here and/or call default
          // TODO: Add your message handler code here and/or call default
          // TODO: Add your message handler code here and/or call default
  • 5인용C++스터디/더블버퍼링 . . . . 4 matches
          // TODO: add construction code here
          // TODO: add draw code for native data here
          // TODO: Add your specialized creation code here
          // TODO: Add your message handler code here and/or call default
  • CSP . . . . 4 matches
          s = encode(s)
         def encode(s):
         def decode(s):
          s = encode(s)
  • Classes . . . . 4 matches
          * [http://orchid.cse.cau.ac.kr/course/cn/index.php?code=project1 #1] is due to 27 Mar.
          * [http://orchid.cse.cau.ac.kr/course/cn/index.php?code=project2 #2] is due to 10 Apr.
          * [http://orchid.cse.cau.ac.kr/course/cn/index.php?code=project3 #3] is due to 15 May.
          * [http://orchid.cse.cau.ac.kr/course/cn/index.php?code=project4 #4] is due to 29 May.
  • Gof/FactoryMethod . . . . 4 matches
         You can avoid this by being careful to access products solely through accessor operations that create the product on demand. Instead of creating the concrete product in the constructor, the constructor merely initializes it to 0. The accessor returns the product. But first it checks to make sure the product exists, and if it doesn't, the accessor creates it. This technique is sometimes called lazy initialization. The following code shows a typical implementation:
         == Sample Code ==
         The function CreateMaze (page 84) builds and returns a maze. One problem with this function is that it hard-codes the classes of maze, rooms, doors, and walls. We'll introduce factory methods to let subclasses choose these components.
         A more esoteric example in Smalltalk-80 is the factory method parserClass defined by Behavior (a superclass of all objects representing classes). This enables a class to use a customized parser for its source code. For example, a client can define a class SQLParser to analyze the source code of a class with embedded SQL statements. The Behavior class implements parserClass to return the standard Smalltalk Parser class. A class that includes embedded SQL statements overrides this method (as a class method) and returns the SQLParser class.
  • JavaScript/2011년스터디/URLHunter . . . . 4 matches
          switch(event.keyCode){
          var code = (window.event)? window.event.keyCode: e.which;
          if(code == 39) map.H.right();
          else if (code == 37) map.H.left();
          else if (code == 32) map.kill();
          switch(event.keyCode){
  • LinuxProgramming/SignalHandling . . . . 4 matches
         = sample code =
         code written by eternalbleu@gmail.com
         code written by eternalbleu@gmail.com
         code written by eternalbleu@gmail.com
  • MajorMap . . . . 4 matches
         ALU is is a part of the execution unit, a core component of all CPUs. ALUs are capable of calculating the results of a wide variety of basic arithmetical computations such as integer and floating point arithmetic operation(addition, subtraction, multiplication, and division), bitwise logic operation, and bit shitf operation. Therefore the inputs to the ALU are the data to be operated on (called operands) and a code from the control unit indicating which operation to perform. Its output is the result of the computation.--from [http://en.wikipedia.org/wiki/ALU]
         A Gray code is a binary numeral system where two successive values differ in only one digit. --from [http://en.wikipedia.org/wiki/Gray_code]
         2-bit Gray codes
  • MoinMoinTodo . . . . 4 matches
          * Replace SystemPages by using the normal "save page" code, thus creating a backup copy of the page that was in the system. Only replace when diff shows the page needs updating.
          * look at cvsweb code (color-coded, side-by-side comparisons)
          * Check generated HTML code for conformity
  • MoreEffectiveC++/Appendix . . . . 4 matches
         If you're the kind of person who likes to learn proper programming technique by reading code, the book for you is ¤ MEC++ Rec Reading, P19
         Each chapter in this book starts with some C++ software that has been published as an example of how to do something correctly. Cargill then proceeds to dissect — nay, vivisect — each program, identifying likely trouble spots, poor design choices, brittle implementation decisions, and things that are just plain wrong. He then iteratively rewrites each example to eliminate the weaknesses, and by the time he's done, he's produced code that is more robust, more maintainable, more efficient, and more portable, and it still fulfills the original problem specification. Anybody programming in C++ would do well to heed the lessons of this book, but it is especially important for those involved in code inspections. ¤ MEC++ Rec Reading, P21
         One topic Cargill does not discuss in C++ Programming Style is exceptions. He turns his critical eye to this language feature in the following article, however, which demonstrates why writing exception-safe code is more difficult than most programmers realize: ¤ MEC++ Rec Reading, P22
  • ProjectEazy . . . . 4 matches
         [http://www.unicode.org/versions/Unicode4.0.0/ch11.pdf 유니코드표준 동아시아(한글 포함)]
         [http://www.unicode.org/charts/PDF/U3130.pdf 유니코드 한글 조합형 표]
         [http://www.unicode.org/charts/PDF/UAC00.pdf 유니코드 한글 완성형 표]
         PyKug:CJKCodecs - 파이선 한글 코덱, hangul모듈 다운로드
  • VMWare/OSImplementationTest . . . . 4 matches
          or ah, ah ; Check for error code
          or ah, ah ; Check for error code
          jmp 08h:clear_pipe ; Jump to code segment, offset clear_pipe
         gdt_code: ; Code segment, read/execute, nonconforming
  • ZP&COW세미나 . . . . 4 matches
          * 로보코드 홈페이지: http://www-903.ibm.com/developerworks/kr/robocode/robocode.html
         http://165.194.17.15/pub/upload_one/robocode_result1.GIF
         http://165.194.17.15/pub/upload_one/robocode_result2.GIF
  • cookieSend.py . . . . 4 matches
          header = {"Content-Type":"application/x-www-form-urlencoded",
          print "encode cookie : " , urllib.urlencode(cookieDict)
          params=urllib.urlencode(paramDict)
  • 기본데이터베이스/조현태 . . . . 4 matches
          printf ("ERROR!! - code:00 - Wrong order!!\n");
          printf("ERROR!! - code:03 - data overflow!!\n");
          printf("ERROR!! - code:02 - Can't find deleted data!!\n");
          printf("ERROR!! - code:01 - Can't find!!\n");
  • 데블스캠프2009/화요일 . . . . 4 matches
         || 장혁수 || robocode || || ||
         ||pm 01:00~02:00 || robocode || 장혁수 ||
         ||pm 02:00~03:00 || robocode || 장혁수 ||
         ||pm 03:00~04:00 || robocode || 장혁수 ||
  • 새싹교실/2011/무전취식/레벨9 . . . . 4 matches
          // put your code here
          // put your code here
          // put your code here
          // put your code here
  • 새싹교실/2012/AClass/5회차 . . . . 4 matches
         char code[100];
         scanf("%s",code);
         while(code[i]!='\0')
         printf("%c",key+code[i]);
  • 오목/민수민 . . . . 4 matches
          // TODO: add construction code here
          // TODO: add draw code for native data here
          // TODO: Add your message handler code here and/or call default
          // TODO: Add your message handler code here and/or call default
  • 오목/진훈,원명 . . . . 4 matches
          // TODO: add construction code here
          // TODO: add draw code for native data here
          // TODO: Add your message handler code here and/or call default
          // TODO: Add your specialized code here and/or call the base class
  • 3rdPCinCAUCSE/FastHand전략 . . . . 3 matches
         C 번의 경우는 일단 [geniumin] 군이 초기 분석 & 알고리즘을 만들고 중반에 [1002]군이 pseudo-code 화, 후반 알고리즘 검산 & 알고리즘 수정에 대해서 [geniumin] & [경태]군이, 구현은 pseudo code 를 만들던 [1002]가 했습니다.
         [경태]가 코딩을 맡았으며 그 동안 [1002] 와 [geniumin] 가 3번문제에 대해 분석. [1002]는 실제 문제를 이해하는 시간이 적었던 관계로 [geniumin] 이 주로 설명. 추후에 [1002] 는 [geniumin] 의 방법이 맞다는 전제하에 pseudo code로의 작성을 도왔습니다.
  • ComputerNetworkClass/Report2006/BuildingWebServer . . . . 3 matches
          * http://orchid.cse.cau.ac.kr/course/cn/index.php?code=project2
          * [http://orchid.cse.cau.ac.kr/course/cn/project/webserver-code.htm 참고자료]
          * [http://www.sockaddr.com/ExampleSourceCode.html example code]
  • DPSCChapter1 . . . . 3 matches
         The Gang of Four's ''Design Patterns'' presents design issues and solutions from a C+ perspective. It illustrates patterns for the most part with C++ code and considers issues germane to a C++ implementation. Those issue are important for C++ developres, but they also make the patterns more difficult to understand and apply for developers using other languages.
         Of course, we provide plenty of sample code in Smalltalk. Our examples are, for the most part, not simply Smalltalk versions of the ''Design Patterns'' examples. We often felt an alternative would be more useful than a mere translation of the C++ example.
          * Much more Smalltalk sample code
  • DebuggingSeminar_2005/AutoExp.dat . . . . 3 matches
         ; su Unicode string pVar,su "Hello world"
         ; You need to list the error code in unsigned decimal, followed by the message.
         ;1234=my custom error code
  • DirectDraw/Example . . . . 3 matches
         // Foward declarations of functions included in this code module:
          // TODO: Place code here.
         // This function and its usage is only necessary if you want this code
  • EightQueenProblem . . . . 3 matches
         ||강석천|| 4h:50m || 135 lines (+ 82 line for testcode. total 217 lines)|| python || ["EightQueenProblem/강석천"] ||
         ||강석천|| 0h:47m || 72 lines (+ 58 line for testcode. total 132 lines)|| python || . ||
         ||김형용|| 8h:00m || 115 lines (+ 63 line for testcode. total 178 lines) || python || ["EightQueenProblem/김형용"]||
  • FOURGODS/김태진 . . . . 3 matches
         // codersHigh2013
          freopen("/Users/jkim/Development/C&C++/codersHigh2013/codersHigh2013/input.txt","r",stdin);
  • HighResolutionTimer . . . . 3 matches
         The '''QueryPerformanceCounter''' function retrieves the current value of the high-resolution performance counter (if one exists on the system). By calling this function at the beginning and end of a section of code, an application essentially uses the counter as a high-resolution timer. For example, suppose that '''QueryPerformanceFrequency''' indicates that the frequency of the high-resolution performance counter is 50,000 counts per second. If the application calls '''QueryPerformanceCounter''' immediately before and immediately after the section of code to be timed, the counter values might be 1500 counts and 3500 counts, respectively. These values would indicate that .04 seconds (2000 counts) elapsed while the code executed.
  • Map연습문제/나휘동 . . . . 3 matches
          string decoded;
          decoded += ch;
          cout << decoded << endl;
  • MineFinder . . . . 3 matches
          // TODO: Add your control notification handler code here
          // TODO: Add your message handler code here and/or call default
          // TODO: Add your control notification handler code here
  • OurMajorLangIsCAndCPlusPlus/ctype.h . . . . 3 matches
         || 함수명 (Uncode) || 내용 ||
         || int iswalpha(wint_t) || Uncode 인지 확인 (한글 등) ||
         || int isleadbyte(int) || 주어진 문자가 Uncode인지 확인(alpha와 동일) ||
  • ProgrammingContest . . . . 3 matches
         만약 자신이 K-In-A-Row를 한 시간 이상 걸려도 풀지 못했다면 왜 그랬을까 이유를 생각해 보고, 무엇을 바꾸어(보통 완전히 뒤집는 NoSmok:역발상 으로, 전혀 반대의 "極"을 시도) 다시 해보면 개선이 될지 생각해 보고, 다시 한번 "전혀 새로운 접근법"으로 풀어보세요. (see also DoItAgainToLearn) 여기서 새로운 접근법이란 단순히 "다른 알고리즘"을 의미하진 않습니다. 그냥 내키는 대로 프로그래밍을 했다면, 종이에 의사코드(pseudo-code)를 쓴 후에 프로그래밍을 해보고, 수작업 테스팅을 했다면 자동 테스팅을 해보고, TDD를 했다면 TDD 없이 해보시고(만약 하지 않았다면 TDD를 하면서 해보시고), 할 일을 계획하지 않았다면 할 일을 미리 써놓고 하나씩 빨간줄로 지워나가면서 프로그래밍 해보세요. 무엇을 배웠습니까? 당신이 이 작업을 30분 이내에 끝내려면 어떤 방법들을 취하고, 또 버려야 할까요?
         === topcoder ===
         http://topcoder.com
  • ProjectPrometheus/AT_BookSearch . . . . 3 matches
         DEFAULT_HEADER = {"Content-Type":"application/x-www-form-urlencoded",
          "Referer":"http://165.194.100.2/cgi-bin/mcu100?LIBRCODE=ATSL&USERID=*&SYSDB=R",
          params=urllib.urlencode(params)
          params=urllib.urlencode(params)
  • ProjectPrometheus/LibraryCgiAnalysis . . . . 3 matches
         params={'LIBRCODE': 'ATSL',
         headers = {"Content-Type":"application/x-www-form-urlencoded",
          "Referer":"http://165.194.100.2/cgi-bin/mcu100?LIBRCODE=ATSL&USERID=*&SYSDB=R",
          params=urllib.urlencode(params)
          params=urllib.urlencode(params)
         http://165.194.100.2/cgi-bin/mcu201?LIBRCODE=ATSL&USERID=abracadabra&SYSDB=R&HISNO=0010&SEQNO=21&MAXDISP=10
  • Refactoring/BuildingTestCode . . . . 3 matches
         == The Value of Self-testing Code ==
         나로하여금 self-testing code로의 길을 시작하게 한 계기는 OOPSLA '92의 한 이야기부터였다. 그때 누군가 (아마도 Dave Thomas)"클래스는 자기 자신의 테스트코드를 가지고 있어야 한다" 라는 말을 했다. 이 말은 테스트를 구성하기 위한 좋은 방법으로 여겨졌다. 나는 모든 클래스에 클래스 스스로를 테스트하는 메소드들 (''test''라 한다.)들을 가지도록 만들었다.
         이정도에서 이야기는 충분하다 본다. 비록 내가 self-testing code를 작성하는 것이 모두에게 이익이 된다고 생각하더라도, 그것은 이 책의 핵심이 아니다. 이 책은 Refactoring에 관한 것이다. Refactoring은 test를 요구한다. 만일 Refactoring 하기 원한다면, test code를 작성해야 한다.
  • SeparatingUserInterfaceCode . . . . 3 matches
         When separating the presentation from the domain, make sure that no part of the domain code makes any reference to the presentation code. So if you write an application with a WIMP (windows, icons, mouse, and pointer) GUI, you should be able to write a command line interface that does everything that you can do through the WIMP interface -- without copying any code from the WIMP into the command line.
  • SmallTalk/강좌FromHitel/강의3 . . . . 3 matches
         * Zip Code: 여러분의 우편번호를 넣습니다. 700-234.
         * Image Code: 여기에 "Locked Image" 창에 표시된 Image code를 넣습니다.
         그러면 Image Code와 그에 해당하는 Password를 발급 받게 됩니다. "Locked
          내용: Username과 Image code.
         이 파일은 Dolphin Smalltalk 바탕본의 바탕글(source code)입니다. 여기에
  • TellVsAsk . . . . 3 matches
         Procedural code gets information then makes decisions. Object-oriented code tells objects to do things.
         Sure, you may say, that's obvious. I'd never write code like that. Still, it's very easy to get lulled into
  • TkinterProgramming/Calculator2 . . . . 3 matches
          def runpython(self, code):
          return repr(eval(code, self.myNameSpace, self.myNameSpace))
          exec code in self.myNameSpace, self.myNamespace
  • ZPBoard/PHPStudy/기본문법 . . . . 3 matches
         code..
         code..
         code..
  • 그래픽스세미나/1주차 . . . . 3 matches
          * 각각에 Outcode를 부여한다.
          * 선의 시작점과 끝점이 들어있는 영역의 Outcode 2개를 AND 연산한다.
          * Outcode가 0000 일 경우엔 Clipping 이 필요하다.
  • 기술적인의미에서의ZeroPage . . . . 3 matches
         The zero page instructions allow for shorter code and excution times by only feching the
         Careful use of the zero page can result in significant increase in code efficient.
         For example, the MOS Technology 6502 has only six non-general purpose registers. As a result, it used the zero page extensively. Many instructions are coded differently for zero page and non-zero page addresses:
  • 레밍즈프로젝트/프로토타입/에니메이션버튼 . . . . 3 matches
         || animate(.AVI) button || [http://www.codeproject.com/buttonctrl/anibuttons.asp] ||
         || ImageButton(.jpeg, .gif...) || [http://www.codeproject.com/buttonctrl/CKbcButton.asp] ||
         || XP MediaCenter Button || [http://www.codeproject.com/buttonctrl/CMCButton.asp] ||
  • 오목/곽세환,조재화 . . . . 3 matches
          // TODO: add construction code here
          // TODO: add draw code for native data here
          // TODO: Add your message handler code here and/or call default
  • 오목/재선,동일 . . . . 3 matches
          // TODO: add construction code here
          // TODO: add draw code for native data here
          // TODO: Add your message handler code here and/or call default
  • 조영준 . . . . 3 matches
          * [http://codeforces.com/profile/skywave codeforces]
          * SCPC 본선 진출 codeground.org
          * Google Codejam 2015 Round1 (1C round rank 1464)
          * GoogleCodeJam 2014 - Round 1 진출
          * [조영준/CodeRace/130506]
  • ACE/HelloWorld . . . . 2 matches
          * project setting 에서 c++ 탭에 code generation->use run-time library 에서 (debug) multithreaded 또는 (debug) multithreaded dll (무슨차이가 있는지 아직 확실하게 모르겠다)
         === code ===
  • AM/AboutMFC . . . . 2 matches
         || Upload:MFC_Macro_code_23of3_2001.11.11.doc ||분석||
         전세계에서 가장 유명한 사이트는 역시 http://codeguru.com 국내는 데브피아 겠죠. 데브피아가 상업화 되면서 어떻게 변했는지는 모르겠네요.
  • AVG-GCC . . . . 2 matches
          -pass-exit-codes Exit with highest error code from a phase[[BR]]
  • Android/WallpaperChanger . . . . 2 matches
          public void onActivityResult(int requestCode, int resultCode, Intent data) {
          if (resultCode == RESULT_OK) {
          if (requestCode == SELECT_PICTURE) {
          Bitmap b = BitmapFactory.decodeStream(getResources().openRawResource(R.raw.wall1));
          * Thumnail자동 제작해주는 API. 성능은 모르겠다 : http://code.google.com/p/thumbnailator/
  • Applet포함HTML/상욱 . . . . 2 matches
         <applet code=Applet1 whdth=200 height=70>
          codebase = "http://java.sun.com/products/plugin/autodl/jinstall-1_4_1_01-windows-i586.cab#Version=1,4,1,1"
          <PARAM NAME = CODE VALUE = Applet1 >
          CODE = Applet1
         <APPLET CODE = Applet1 WIDTH = 200 HEIGHT = 70>
  • Applet포함HTML/영동 . . . . 2 matches
         <applet code=AppletTest width=200 height=100>
          codebase="http://java.sun.com/products/plugin/autodl/jinstall-1_4_0_03-win.cab#Version=1,4,0,30">
          <PARAM NAME = CODE VALUE = AppletTest >
          CODE = AppletTest
         <APPLET CODE = AppletTest WIDTH = 200 HEIGHT = 100>
  • Boost/SmartPointer . . . . 2 matches
         // The original code for this example appeared in the shared_ptr documentation.
         // argument, so would not work as intended. At that point the code was
  • BoostLibrary/SmartPointer . . . . 2 matches
         // The original code for this example appeared in the shared_ptr documentation.
         // argument, so would not work as intended. At that point the code was
  • C/Assembly . . . . 2 matches
         asm(".code16\n");
         asm(".code32\n");
  • C99표준에추가된C언어의엄청좋은기능 . . . . 2 matches
          The new variable-length array (VLA) feature is partially available. Simple VLAs will work. However, this is a pure coincidence; in fact, GNU C has its own variable-length array support. As a result, while simple code using variable-length arrays will work, a lot of code will run into the differences between the older GNU C support for VLAs and the C99 definition. Declare arrays whose length is a local variable, but don't try to go much further.
  • CodeCoverage . . . . 2 matches
         CodeCoverage 는 Testing 이 목표 어플리케이션을 얼만큼 충분히 테스트하는가에 대한 측정 지표이다.
         원문 : http://www.wikipedia.org/wiki/Code_coverage
         CodeCoverage 는 Software Testing 에서 사용하는 측정 도구중의 하나이다. 프로그램이 테스트된 소스 코드의 정도를 기술한다. 이는 다른 대다수의 다른 테스트 메소드와 다른다. 왜냐하면 CodeCoverage 는 소프트웨어 기능, Object interface 과 같은 다른 측정 방법에 비하여 source code를 직접 보기 ㅤㄸㅒㅤ문이다.
         몇가지 CodeCoverage 의 측정의 방법이 있다. 그중 중점적인것 몇가지를 보면
         일반적으로 소스 코드는 모듈화를 통해 도구처럼 만들어지고, 회귀(regression) 테스트들을 통해 실행되어 진다. 결과 출력은 실행지 않은 코드들을 보고, 이러한 부분에 대한 테스트들이 필요함을 분석해 낸다. 다른 관점의 CodeCoverage 방법들과 혼용하는 것은 회귀 테스트들의 관리하는 회귀 테스트들에게 좀더 엄격한 개발을 이끌어 낸다.
         CodeCoverage 는 최종적으로 퍼센트로 표현한다. 가령 ''우리는 67% 코드를 테스트한다.'' 라고 말이다. 이것의 의미는 이용된 CodeCoverage 에 대한 얼마만큼의 의존성을 가지는가이다. 가령 67%의 PathCoverage는 67%의 StatementCoverage 에 비하여 좀더 범위가 넓다.
         See also: RegressionTesting, StaticCodeAnalysis
         http://wiki.cs.uiuc.edu/SEcourse/Code+coverage+tool
         === Code Coverage Tool ===
          * http://www.validatedsoftware.com/code_coverage_tools.html : Code Coverage Tool Vender 들
  • DebuggingApplication . . . . 2 matches
         [http://www.codeguru.com/forum/showthread.php?t=315371]
         [http://www.codeproject.com/debug/mapfile.asp]
  • EightQueenProblem2Discussion . . . . 2 matches
         이미 알고리즘 수업 시간을 통해 생각해본 문제이기에 주저없이 백트래킹(BackTracking) 기법을 선택해서 슈도코드를 종이에 작성해보았고 그를 바탕으로 구현에 들어갔습니다.(''그냥 호기심에서 질문 하나. 알고리즘 수업에서 백트래킹을 배웠나요? 최근에는 대부분 AI쪽으로 끄집어 내서 가르치는 것이 추세입니다만... 교재가 무엇이었나요? --김창준 Foundations of Algorithms Using C++ Pseudocode, Second Edition 이었습니다. ISBN:0763706205 --이덕준'') 백트래킹은 BruteForce식 알고리즘으로 확장하기에 용이해서 수정엔 그리 많은 시간이 걸리지 않았습니다. 만일 EightQueenProblem에 대한 사전 지식이 없었다면 두번째 과제에서 무척 당황했을것 같습니다. 이번 기회에 코드의 적응도도 중요함을 새삼 확인했습니다. --이덕준
         어제 서점에서 ''Foundations of Algorithms Using C++ Pseudocode''를 봤습니다. 알고리즘 수업 시간에 백트래킹과 EightQueenProblem 문제를 교재를 통해 공부한 사람에게 이 활동은 소기의 효과가 거의 없겠더군요. 그럴 정도일줄은 정말 몰랐습니다. 대충 "이런 문제가 있다" 정도로만 언급되어 있을 주 알았는데... 어느 교재에도 구체적 "해답"이 나와있지 않을, ICPC(ACM의 세계 대학생 프로그래밍 경진대회) 문제 같은 것으로 할 걸 그랬나 봅니다. --김창준
  • HolubOnPatterns . . . . 2 matches
          * [http://www.yes24.com/24/Goods/2127215?Acode=101 Holub on Patterns: 실전 코드로 배우는 실용주의 디자인 패턴] - 번역서
          * [http://www.yes24.com/24/goods/1444142?scode=032&OzSrank=1 Holub on Patterns: Learning Design Patterns by Looking at Code] - 원서
  • ISBN_Barcode_Image_Recognition . . . . 2 matches
         = 1D Barcode Image Recognition =
          * EAN-13의 심볼로지에 대해 잘 설명되어 있는 페이지(영문) : http://www.barcodeisland.com/ean13.phtml
  • InternalLinkage . . . . 2 matches
         The second subtlety has to do with the interaction of inlining and static objects inside functions. Look again at the code for the non-member version of thePrinter: ¤ Item M26, P17
         You don't ordinarily need to worry about such linguistic mumbo jumbo, but there is one thing you must remember: functions with internal linkage may be duplicated within a program (i.e., the object code for the program may contain more than one copy of each function with internal linkage), and this duplication includes static objects contained within the functions. The result? If you create an inline non-member function containing a local static object, you may end up with more than one copy of the static object in your program! So don't create inline non-member functions that contain local static data.(9)
         그것은 바로 InternalLinkage 때문이다. InternalLinkage 란, 컴파일 단위(translation unit -> Object Code로 생각해 보자) 내에서 객체나 함수의 이름이 공유되는 방식을 일컫는다. 즉, 객체의 이름이나 함수의 이름은 주어진 컴파일 단위 안에서만 의미를 가진다.
  • JTDStudy/첫번째과제/상욱 . . . . 2 matches
         {{{~cpp code
         {{{~cpp code
  • Java Study2003/첫번째과제/장창재 . . . . 2 matches
          자바 언어(Java Language)를 이용하여 작성한 자바 프로그램(Java Program)은 자바 컴파일러(Java Compiler)를 이용하여 자바 바이트코드(Java Byte code)로 컴파일 되고, 이 자바 바이트코드는 자바 가상머신에 의해 해석되어 실행되는데, 이때 자바 가상머신은 자바 바이트코드에 대한 해석기 즉 인터프리터(interpreter)로 동작하게 됩니다. 이렇게 자바 프로그램은 컴파일 방식 및 인터프리터 방식이 모두 적용된다는 것입니다.
         자바 바이트코드(Java Byte code):
  • LawOfDemeter . . . . 2 matches
         something somewhere else. This tends to create fragile, brittle code.
         the code, you can do so with confidence if you know the queries you are calling will not cause anything
  • Linux . . . . 2 matches
         PS. Yes - it's free of any minix code, and it has a multi-threaded fs.
         [http://phpschool.com/bbs2/inc_print.html?id=11194&code=tnt2] linux에서 NTFS 마운트 하기
  • MFC/MessageMap . . . . 2 matches
         = Code Part =
          // DO NOT EDIT what you see in these blocks of generated code !
          // DO NOT EDIT what you see in these blocks of generated code!
         #define NFR_UNICODE 2
         #define WM_GETDLGCODE 0x0087
  • MFC/Serialize . . . . 2 matches
          // TODO: add storing code here
          // TODO: add loading code here
  • Memo . . . . 2 matches
         unicode('배','utf-8', 'replace').encode('euc-kr')
  • NSIS/예제2 . . . . 2 matches
         Install code+strings: 769 / 1513 bytes
         Uninstall code+data+strings: 624 / 1106 bytes
  • NSIS/예제3 . . . . 2 matches
         Install code+strings: 1779 / 3525 bytes
         Uninstall code+data+strings: 637 / 1119 bytes
  • OptimizeCompile . . . . 2 matches
         '''Removing loop invariant code'''
         ==== Reduction of code size ====
  • ProjectPrometheus/Journey . . . . 2 matches
          * 대안을 생각중인데, 일종의 Facade 를 만들고, Controller 의 각 service 들은 Facade 만 이용하는 식으로 작성하면 어떨까. 그렇게 한다면 Facade 에 대해서 Test Code 를 작성할 수 있으리라 생각. 또는, Servlet 부분에 대해서는 AcceptanceTest 의 관점으로 접근하는 것을 생각. 또는, cactus 에 대해서 알아봐야 하려나.. --["1002"]
          * Code Review 로서 Refactoring 이 이용된다고 했다시피, Refactoring을 해 나가면서 전체 프로그램의 그림이 좀 더 이해가 갔다. 한동안 해당 프로그램에 대해서 플밍 리듬을 놓쳤을때 Refactoring 을 시도하는것도 좋은 전략이라 생각.
          * ''Jython은 기본적으로 모든 스트링을 유니코드로 처리함. 따라서, 해당 스트링을 euc-kr로 인코딩한 다음에 파라미터 전달을 하면 제대로 됨. 인코딩을 바꾸기 위해서는 파이썬 euc-kr 코덱(pure python 버젼)을 깔고, {{{~cpp '한글'.encode('euc-kr')}}}을 쓰거나, 아니면 자바의 String.getBytes나 {{{~cpp OutputStreamWriter}}} 등을 쓰면 될 것임. --JuNe''
         그리고 ["1002"]는 다음과 같이 Java Pseudo code 를 적었다.
  • PyIde/SketchBook . . . . 2 matches
         Eclipse 쓰던중 내 코드 네비게이팅 습관을 관찰해보니.. code 를 page up/down 으로 보는 일이 거의 없었다. 이전에 VIM 을 쓰면서 'VIM 으로 프로그래밍하면 빠르다' 라고 느꼈던 이유를 생각해보면
         Python 으로 HTML Code Generator 를 작성하던중. 좀 무식한 방법으로 진행했는데, 원하는 HTML 을 expected 에 고스란히 박아놓은 것이다. 이는 결과적으로 test code 를 네비게이팅 하기 어렵게 만들었고, 해당 Generating 되는 HTML 의 추상도도 상당히 낮게 된다. 한화면에 보여야 할 HTML 데이터도 많아야 한다. 이는 결국 내가 에디터 창을 최대로 놓게 만들더니, 더 나아가 에디터 창의 폰트 사이즈을 11에서 8정도로 줄이고 모니터를 앞당겨 보게끔 만들었다. (15인치 LCD 모니터여서 해상도가 최대 1024*768 임.) 해당 상황에 대해 사람이 맞추는 것이 좋을까, 또는 툴의 Viewing 이 도움을 줄 방법이 있을까, 또는 사람이 이를 문제상황으로 인식하고 프로그램 디자인을 바꾸게끔 하는것이 좋을까.
  • PythonLanguage . . . . 2 matches
          * Python 을 '실행가능한 의사코드(pseudo-code)' 라고 부르기도 한다. 그만큼 완성뒤 코드를 보면 참으로 깔끔하다.
          * [http://codejob.co.kr/docs/view/2/ 점프 투 파이썬]
  • REFACTORING . . . . 2 matches
          * Refactoring 을 하기 위해서는 UnitTest code가 필수적이다. 일단 처음 Refactoring에 대한 간단한 원리를 이해하고 싶다면 UnitTest 코드 없이 해도 좋지만, UnitTest code를 작성함으로서 Refactoring 에 대한 효과를 높일 수 있다. (Refactoring 중 본래의 외부기능을 건드리는 실수를 막을 수 있다.)
          * Code Review 를 하려고 할때
          * Bad Smell 이 날때. - ["Refactoring/BadSmellsInCode"]
         == Refactoring 과 Test Code ==
         ["Refactoring/BuildingTestCode"]
  • RSSAndAtomCompared . . . . 2 matches
          * base64-encoded binary content (again, no guarantee)
         RSS 2.0 is not in an XML namespace but may contain elements from other XML namespaces. There is no central place where one can find out about many popular extensions, such as dc:creator and content:encoded.
  • Refactoring/ComposingMethods . . . . 2 matches
          * You have a code fragment that can be grouped together.[[BR]]''Turn the fragment into a method whose name explains the purpose of the method.''
          * The code assigns to a parameter. ''Use a temporary variagle instead.''
  • Refactoring/MakingMethodCallsSimpler . . . . 2 matches
         You have a method that runs different code depending on the values of an enumerated parameter.
         == Replace Error Code with Exception ==
         A method returns a special code to indicate an error.
  • Refactoring/SimplifyingConditionalExpressions . . . . 2 matches
          * The same fragment of code is in all branches of a conditional expression. [[BR]]''Move it outside of the expression.''
          * A section of code assumes something about the state of the program. [[BR]]''Make the assumption explicit with an assertion.''
  • ServiceQualityOfYongsanMarket . . . . 2 matches
         === Shop code : YS0000 ===
         === Shop code : YS0001 ===
  • StructuredText . . . . 2 matches
          * Sub-paragraphs of a paragraph that ends in the word 'example' or the word 'examples', or '::' is treated as example code and is output as is.
          * Text enclosed single quotes (with white-space to the left of the first quote and whitespace or puctuation to the right of the second quote) is treated as example code.
  • TAOCP/BasicConcepts . . . . 2 matches
          C - 명령어 코드(the poeration code)
          F - 명령어의 변경(a modification of the operation code). (L:R)이라면 8L+R = F
  • TheJavaMan/로보코드 . . . . 2 matches
         * 로보코드 홈페이지: http://www-903.ibm.com/developerworks/kr/robocode/robocode.html
  • TriDiagonal/1002 . . . . 2 matches
         === test_lu.py - LU Decomposition 을 위한 test code ===
         === test_tridiagonal.py - tri-diagonal 부분에 대한 test-code ===
  • UML . . . . 2 matches
         At the same time, UML is often considered to have become too bloated, and fine-grained in many aspects. Details which are best captured in source code are attempted to be captured using UML notation. The [[80-20 rule]] can be safely applied to UML: a small part of UML is adequate for most of the modeling needs, while many aspects of UML cater to some specialized or esoteric usages.
         [http://www.codeproject.com/cpp/oopuml.asp] - UML 강좌
  • WERTYU/1002 . . . . 2 matches
         JuNe 의 이야기를 듣고 doctest 를 처음 써보다. (실제로는 한단계씩 진행) 느낌이 꽤 재밌었다. test code 에 대해서 'test code == 문서화 정보'를 한다는 느낌이 더 깊게 난다. 조금 더 써먹어보고 관찰해봐야겠다는 생각중.
  • WindowsTemplateLibrary . . . . 2 matches
         In an uncharacteristic move by Microsoft—an outspoken critic of open source software—they made the source code of WTL freely available. Releasing it under the open-source Common Public License, Microsoft posted the source on SourceForge, an Internet open-source repository. The SourceForge version is 7.5.
         [http://www.codeproject.com/wtl/wtl4mfc1.asp WTLForMFCProgrammer]
  • [Lovely]boy^_^/Diary/2-2-16 . . . . 2 matches
          * Today, I'll type DirectX Codes.... but I didn't.--;
          * I studied ProgrammingPearls chapter 3. When I was reading, I could find familiar book name - the Mythical Man Month, and Code Complete.
          * I typed directX codes from NeXe sites, because RolePlaying Games with DirectX that I borrowed some days ago is so difficult for me. Let's study slow and steady...
          * '''Keeping the code simple is usually the key to correctness.'''
  • html5/form . . . . 2 matches
          * http://code.google.com/p/webforms2/
          * HTML5 의 Canvas를 지원하지 않는 IE8 이전 버전을 위해 ExplorerCanvas(http://code.google.com/p/explorercanvas/) 라이브러리가 제공되듯이 HTML5 확장 폼을 지원하지 않는 브라우저의 경우 WebForm2 라이브러리를 사용할만 하다
          * {{{<input type="text" name="postCode" pattern="/^\d{3}-?\d{3}$/" title="123-123">}}}
  • 고한종/배열을이용한구구단과제 . . . . 2 matches
          //put your code in here.
          //code zone is end.
  • 데블스캠프2009/목요일/연습문제/MFC/박준호 . . . . 2 matches
         // If you add a minimize button to your dialog, you will need the code below
          // TODO: Add your control notification handler code here
  • 데블스캠프2009/목요일/연습문제/MFC/서민관 . . . . 2 matches
         // If you add a minimize button to your dialog, you will need the code below
         // If you add a minimize button to your dialog, you will need the code below
  • 데블스캠프2009/목요일/연습문제/MFC/송지원 . . . . 2 matches
         // If you add a minimize button to your dialog, you will need the code below
          // TODO: Add your control notification handler code here
  • 데블스캠프2011/네째날/이승한 . . . . 2 matches
          * [http://code.google.com/p/msysgit/downloads/list msysgit download page] - download {{{Git-1.7.4-preview20110204.exe}}}
          * [http://code.google.com/p/tortoisegit/downloads/list tortoise git download page] - download {{{Tortoisegit-1.6.5.0-32bit.msi}}}, 32bit
  • 데블스캠프2011/넷째날/Git . . . . 2 matches
          * [http://code.google.com/p/msysgit/downloads/list msysgit download page] - download {{{Git-1.7.4-preview20110204.exe}}}
          * [http://code.google.com/p/tortoisegit/downloads/list tortoise git download page] - download {{{Tortoisegit-1.6.5.0-32bit.msi}}}, 32bit
  • 데블스캠프2012/넷째날/묻지마Csharp/Mission3/김수경 . . . . 2 matches
          #region Windows Form Designer generated code
          /// the contents of this method with the code editor.
  • 비밀키/나휘동 . . . . 2 matches
          ofstream fout("encode.txt");
          ofstream fout("decode.txt");
  • 새싹교실/2011/무전취식/레벨10 . . . . 2 matches
          // add your code here //아직 코드까지는 못짰어요;
          // add your code here
  • 위시리스트 . . . . 2 matches
          * [http://www.yes24.com/24/goods/1469754?scode=032&OzSrank=4 OpenGL Super Bible]
          http://www.kyobobook.co.kr/product/detailViewEng.laf?ejkGb=BNT&mallGb=ENG&barcode=9781849695046&orderClick=LAG&Kc=
  • 이영호/nProtect Reverse Engineering . . . . 2 matches
         |CommandLine = ""C:\Program Files\Mabinogi\client.exe" code:1622 ver:237 logip:211.218.233.200 logport:11000 chatip:211.218.233.192 chatport:8000 setting:"file://data/features.xml=Regular, Korea""
         client.exe code:1622 ver:237 logip:211.218.233.200 logport:11000 chatip:211.218.233.192 chatport:8000 setting:"file://data/features.xml=Regular, Korea" 로 실행시키면 된다.
  • 이영호/지뢰찾기 . . . . 2 matches
         지뢰찾기 만든 coder가 어떤 생각으로 이걸 짰는지 분석부터 시작.
         아래 소스는 지뢰찾기 분석한 것을 coder가 제작한 게임 소스 그대로 C언어로 완벽하게 구현한 것이다. (아마 M$에 있는 소스와 완벽히 똑같을 것이다.)
  • 임인책/북마크 . . . . 2 matches
          * [http://zeropage.org/~dduk/ace/Addison.Wesley.The.ACE.Programmers.Guide.chm ACE Programmer's Guide] ([http://zeropage.org/~dduk/ace/APG.zip example code])
          * [http://codeguru.earthweb.com/system/apihook.html API Hooking Revealed]
  • 작은자바이야기 . . . . 2 matches
          * IME(Input Method Editor) - OS 레벨에서 실제 key code - 문자의 mapping과 문자 조합('ㅁ' + 'ㅏ' 같은 경우)의 처리를 해 주는 소프트웨어. Sublime에서는 제대로 처리를 안 해 줬다...
          * JVM & Java Byte Code
          * 명령어의 prefix로 타입을 구분한다. http://en.wikipedia.org/wiki/Java_bytecode#Instructions
  • 프로그램내에서의주석 . . . . 2 matches
         이번기회에 comment, document, source code 에 대해서 제대로 생각해볼 수 있을듯 (프로그램을 어떻게 분석할 것인가 라던지 Reverse Engineering Tool들을 이용하는 방법을 궁리한다던지 등등) 그리고 후배들과의 코드에 대한 대화는 익숙한 comment 로 대화하는게 낫겠다. DesignPatterns 가 한서도 나온다고 하며 또하나의 기술장벽이 내려간다고 하더라도, 접해보지 않은 사람에겐 또하나의 외국어일것이니. 그리고 영어가 모국어가 아닌 이상. 뭐. (암튼 오늘 내일 되는대로 Documentation 마저 남기겠음. 글쓰는 도중 치열하게 Documentation을 진행하지도 않은 사람이 말만 앞섰다란 생각이 그치질 않는지라. 물론 작업중 Doc 이 아닌 작업 후 Doc 라는 점에서 점수 깎인다는 점은 인지중;) --석천
         주석이 실행될 수 있는 코드가 아니기 때문에, 반드시 코드가 주석대로 수행된다고 볼 수는 없지만 없는것 보다는 낳은 경우도 많다. 코드 자체는 언어의 subset 이기 때문에 아무리 ''코드가 이야기한다(code tells)''라 할지라도 우리가 쓰는 언어의 이해도에 미치기가 어렵다. 이는 마치, 어떤 일을 함에 있어서 메뉴얼이 존재함에도 불구하고 경험자에게 이야기를 듣고 메뉴얼을 볼 경우, 그 이해가 쉽고 빠르게 되는것과 비슷하다.
  • 함수포인터 . . . . 2 matches
         [http://www.codeproject.com/atl/atl_underthehood_.asp 2. 함수포인터]
         [http://www.codeproject.com/atl/atl_underthehood_.asp 3. thunk]
  • 1002/Journal . . . . 1 match
          * 규영이형이 Working Effectivly With Legacy Code 발표할때를 보면서 그 격에 있어 현격함을 느낌.
         7 (토): Prometheus Test Code 추가 대장정
         이번에 리팩토링을 하려고 할때 Legacy Code Refactoring 이라고 상정해서 그럴까. Coverage Test를 완벽하게 작성하는 것에 대해 부담감을 느꼈다. 예전에 유용했었던 '아아. 이미 다 되어있어요.~' 를 다시 적용해볼까.
         대강 pseudo code 로 적으면
          * SWEBOK Construction 부분 한번 더 봄. 하지만 여전히 마음에 안들어하는중; (상민쓰 말처럼 '영어로 된 동화책 읽고 세익스피어 영문판 읽어야' 이해하는 내용이여서 그런가;) Code Construction 은 아무래도 Design 영역이나 Test 영역에 비해서 art (예술 또는 기술) 적인 측면이 커서 그러려나. 이건 다른 레퍼런스를 보는 것이 나을 것 같다. 한계를 생각하자.
  • 3N+1Problem/1002_2 . . . . 1 match
          http://gochi.pe.kr/upload/img/code/3npuls1problem.jpg [[BR]]
  • 5인용C++스터디/메뉴와단축키 . . . . 1 match
          // TODO: Add your message handler code here
  • ACM2008 . . . . 1 match
         [http://acm.pku.edu.cn/JudgeOnline/ POJ] Peking university Judge Online 이란 시스템이 있는데 온라인으로 프로그래밍 문제를 제공하고, 온라인으로 소스를 보내면 서버에서 컴파일해서 결과를 알려주는 시스템이다. 책에서는 code 의 길이를 이용한 코드 골프쪽에 초점을 맞추고 있었지만 이 프로젝트의 목표상 그럴 필요는 없을거 같다. 다만 온라인으로 제공되는 문제가 꽤 있고 평가하는 시스템이 있으므로 보다 즐겁게 놀 수 있는 '꺼리' 일 것 같다.
  • ACM_ICPC/2012년스터디 . . . . 1 match
          * 코드포스 http://codeforces.com/
          * Codeforce 3시간으로 문제 set풀기.
          * Codeforce 3시간으로 문제 set풀기.
  • AcceleratedC++/Chapter13 . . . . 1 match
         // this code almost works; see 13.3.2/242
  • Adapter . . . . 1 match
         우리는 Tailored Adapter안에서 메세지를 해석을 위하여 해당 전용 메소드를 만들수 있다. 왜냐하면 디자인 시간에 Adapter와 Adaptee의 프로토콜을 알고 있기 때문이다. The Adapter class는 유일한 상황의 해석을 위해서 만들어 진다. 그리고 각각의 Adapter의 메소드는 Adaptee에 대한 알맞은 메세지들에 대하여 hard-codes(전용 함수 정도의 의미로 생각) 이다
         이 다이어 그램은 단순화 시킨것이다.;그것은 개념적으로 Pluggable Adpter의 수행 방식을 묘사한다.그러나, Adaptee에게 보내지는 메세지는 상징적으로 표현되는 메세지든, 우회해서 가는 메세지든 이런것들을 허가하는 perform:을 이용하여 실제로 사용된다.|Pluggable Adpater는 Symbol로서 메세지 수집자를 가질수 있고, 그것의 Adaptee에서 만약 그것이 평범한 메세지라면 수집자인 perform에게 어떠한 시간에도 이야기 할수 있다.|예를 들어서 selector 가 Symbol #socialSecurity를 참조할때 전달되는 메세지인 'anObject socialSecurity'는 'anObject perform: selector' 과 동일하다. |이것은 Pluggable Adapter나 Message-Based Pluggable Adapter에서 메세지-전달(message-forwading) 구현되는 키이다.| Adapter의 client는 Pluggable Adapter에게 메세지 수집자의 value와 value: 간에 통신을 하는걸 알린다,그리고 Adapter는 이런 내부적 수집자를 보관한다.|우리의 예제에서 이것은 client가 'Symbol #socialSecurity와 value 그리고 '#socialSecurity:'와 'value:' 이렇게 관계 지어진 Adapter와 이야기 한는걸 의미한다.|양쪽중 아무 메세지나 도착할때 Adapter는 관련있는 메세지 선택자를 그것의 'perform:'.을 사용하는 중인 Adaptee 에게 보낸다.|우리는 Sample Code부분에서 그것의 정확한 수행 방법을 볼것이다.
         == Sambple Code ==
  • AirSpeedTemplateLibrary . . . . 1 match
         However, in making Airspeed's syntax identical to that of Velocity, our goal is to allow Python programmers to prototype, replace or extend Java code that relies on Velocity.
  • Ant/TaskOne . . . . 1 match
          <!-- Compile the java code from ${src} into ${build} -->
  • Applet포함HTML/진영 . . . . 1 match
         <APPLET CODE=" NotHelloWorldApplet.class" WIDTH=300 HEIGHT=300>
          codebase = "http://java.sun.com/products/plugin/autodl/jinstall-1_4_1_01-windows-i586.cab#Version=1,4,1,1"
          <PARAM NAME = CODE VALUE = " NotHelloWorldApplet.class" >
          CODE = " NotHelloWorldApplet.class"
         <APPLET CODE = " NotHelloWorldApplet.class" WIDTH = 300 HEIGHT = 300>
  • AstroAngel . . . . 1 match
          * 이영록 : ["ricoder"]
  • BlueZ . . . . 1 match
         The overall goal of this project is to make an implementation of the Bluetooth™ wireless standards specifications for Linux. The code is licensed under the GNU General Public License (GPL) and is now included in the Linux 2.4 and Linux 2.6 kernel series.
         = Sample Code =
  • BuildingWikiParserUsingPlex . . . . 1 match
         Plex 로 Wiki Page Parser 를 만들던중. Plex 는 아주 훌륭한 readability 의 lexical analyzer code 를 만들도록 도와준다.
          enterCode = Str("\n")
          ruler = Str("----") + enterCode
          (enterCode, repl_enter),
  • C++3DGame . . . . 1 match
         하나의 code[] 절대 "세계"좌표를 구하려면 다음과 같은 코드를 사용한다.
  • C/C++어려운선언문해석하기 . . . . 1 match
         CodeProject에서 최근에 아주 흥미로운 글을 읽었습니다. 글의 내용이 별로 길지도 않고 워낙 유용한 정보라 생각되서 날림으로 번역해봤습니다. 영어와 한글의 어순이 반대라서 매끄럽지 못한 부분이 많은데 이런 경우 원문도 같이 볼 수 있도록 같이 올렸습니다.
         원문 : How to interpret complex C/C++ declarations (http://www.codeproject.com/cpp/complex_declarations.asp)
  • CC2호 . . . . 1 match
         [http://www.zikimi.co.kr/new_zikimi/z002/002_01.htm?code=37 프로그래머 열린 공간 지킴이]
  • CPPStudy_2005_1/STL성적처리_1 . . . . 1 match
         = code =
  • CPPStudy_2005_1/STL성적처리_1_class . . . . 1 match
         = code =
  • CPPStudy_2005_1/STL성적처리_2_class . . . . 1 match
         = Code =
         [[NewWindow("http://www.zeropage.org/viewcvs/www/cgi/viewcvs.cgi/accelerated_cpp_stl_grade/?root=sapius", "source code")]]
  • CProgramming . . . . 1 match
         [http://www.zikimi.co.kr/new_zikimi/z002/002_01.htm?code=37 프로그래머 열린 공간 지킴이]
  • CivaProject . . . . 1 match
          virtual int getHashCode() {
          //return getClass().getName() + "@" + Integer.toHexString(hashCode());
          /** Cache the hash code for the string */
  • CodeConvention . . . . 1 match
          * [http://java.sun.com/docs/codeconv/ Java Code Convention] : ["Java"] Platform
          * [http://www.python.org/peps/pep-0007.html Style Guide for C Code]
          * [http://www.python.org/peps/pep-0008.html Style Guide for Python Code]
          * 각 언어마다, Code Convention or Style, Notation, Naming 제각각이지만 일단은 Convention으로 해두었음 --["neocoin"]
  • CodeRace/20060105/도현승한 . . . . 1 match
         [codeRace/20060105]
  • ComponentObjectModel . . . . 1 match
         COM is a planned feature of the coming version of Windows, code-named "Longhorn".
  • ComputerNetworkClass/2006 . . . . 1 match
          * http://orchid.cse.cau.ac.kr/course/cn/index.php?code=project1
  • ComputerNetworkClass/Report2006/BuildingProxyServer . . . . 1 match
          * http://orchid.cse.cau.ac.kr/course/cn/index.php?code=project4
         [http://www.naturesharmony.us/misc/WoW/WoWEmu_Help/wsaerrors.html WSA Error Code]
         [http://www.elbiah.de/hamster/doc/ref/errwinsock.htm Winsock Error Code]
  • ComputerNetworkClass/Report2006/PacketAnalyzer . . . . 1 match
         = Sample Code =
          printf("WSAIotcl(%d) failed; %d\n", dwIoControlCode,
          // Decode the IP header
  • ContestScoreBoard/허아영 . . . . 1 match
         = source code =
  • CppStudy_2002_2 . . . . 1 match
          * 참여자 - 이영록(["ricoder"]) ,김영준(["k7y8j2"]), 박세연(["세여니"]), 장재니(["E=mc²"])
  • CppUnit . . . . 1 match
          * Project Setting - Code Generation - Use Run-Time library 를 다음으로 맞춰준다.
          Check that Projects/Settings.../C++/Code Generation is indeed using the correct library.
         이 부분에 나오는 Code Generation부분이 어디에 있는지 찾지를 못 하겠네요. 메뉴가 숨어있기라도 한 건지...@-@;; --[leoanrdong]
         Project Setting - Code Generation - Use Run-Time library 를 다음으로 맞춰준다.
          - C/C++ 탭에 보면 category가 있는데 거기에 code generation 이 있습니다. - [임인택]
  • Cracking/ReverseEngineering/개발자/Software/ . . . . 1 match
         Software 개발자가 알아야 하는 것은 Language, Algorithm만이 아니다. (이 것만 알면 Coder일 뿐이 잖는가?)
         Keyword : Cracking, Reverse Engineering, Packing, Encypher, Encrypt, Encode, Serial, Exploit, Hacking, Jeffrey Ritcher
  • CrackingProgram . . . . 1 match
         [http://family.sogang.ac.kr/~gundal79/ codeDiver]
  • CxImage 사용 . . . . 1 match
          // TODO: Add your specialized creation code here
  • DataCommunicationSummaryProject/Chapter5 . . . . 1 match
          * Gold codes라 불리우는, 약간 다른 코딩 테크닉 사용. QPSK
          * 새 하드웨어가 필요하지만, 새로운 라디오 인터페이스가 필요없으며, Walsh Codes를 두번 사용해서 두배의 용량을 지원한다.
  • Debugging/Seminar_2005 . . . . 1 match
          * ask the code
  • DevelopmentinWindows/APIExample . . . . 1 match
         #pragma code_page(949)
  • Dubble_Buffering . . . . 1 match
         == Source Code ==
          // to do : add draw code with memDC
  • Eclipse . . . . 1 match
         ||Ctrl+Shift+F|| code의 정렬해준다. 한라인의 소스가 길어지면(100이상) 포멧팅에 한계 보이기도 한다. ||
  • EffectiveSTL/Container . . . . 1 match
         = Item2. Beware the illusion of container-independant code. =
  • EffectiveSTL/ProgrammingWithSTL . . . . 1 match
         = Item47. Avoid producing write-only code. =
  • EightQueenProblem/임인택 . . . . 1 match
         === source code ===
  • EightQueenProblem2 . . . . 1 match
         ||강석천|| 2m || 131 lines (+ 82 line for testcode. total 213 lines) || python ||
  • EightQueenProblemDiscussion . . . . 1 match
          * TFD로 시도하였는데. test와 code간 이동이 빠르지 못하였다. 즉, test부분이 충분히 작아지지 못한 것 같다.
  • EightQueenProblemSecondTry . . . . 1 match
         || 이선우 ||1h:05m||1h:52m||52m|| 114 lines || 147 lines(+ test code 28 lines) || 304 lines || java || java || java ||
          * LOC - ''Lines of Code. 보통 SLOC(Source Lines of Code)이라고도 함.''
  • Emacs . . . . 1 match
          emacs code browser의 약자로서, 프로젝트 파일 management나, 디렉토리 management등을 도와주는 확장 기능이다.
  • FortuneCookies . . . . 1 match
          * "Perl is executable line noise, Python is executable pseudo-code."
  • Gof/Adapter . . . . 1 match
         == Sample Code ==
         Compare this code the class adapter case. The object adapter requires a little more effort to write, but it's more flexible. For example, the object adapter version of TextShape will work equally well with subclasses of TextView -- the client simply passes an instance of a TextView subclass to the TextShape constructor.
  • Gof/Command . . . . 1 match
         == Sample Code ==
         여기 보여지는 C++ code는 Motivation 섹션의 Command 크래스에 대한 대강의 구현이다. 우리는 OpenCommand, PasteCommand 와 MacroCommand를 정의할 것이다. 먼저 추상 Commmand class 는 이렇다.
  • Gof/Strategy . . . . 1 match
         == Sample Code ==
          * RTL System for compiler code optimization - Register allocation, Instruction set Scheduling.
  • GofStructureDiagramConsideredHarmful . . . . 1 match
         I routinely ask folks to add the word "SAMPLE" to each GoF Structure diagram in the Design Patterns book. In the future, I'd much prefer to see sketches of numerous structures for each Pattern, so readers can quickly understand that there isn't just one way to implement a Pattern. But if an author will take that step, I'd suggest going even further: loose the GoF style altogether and communicate via a pattern language, rich with diagrams, strong language, code and stories.
  • HangulProcess . . . . 1 match
         [Unicode] : 유니코드
  • HanoiProblem/영동 . . . . 1 match
         .code
  • HeadFirstDesignPatterns . . . . 1 match
         sourcecode
  • HowToStudyDataStructureAndAlgorithms . . . . 1 match
         제가 생각컨데, 교육적인 목적에서는, 자료구조나 알고리즘을 처음 공부할 때는 우선은 특정 언어로 구현된 것을 보지 않는 것이 좋은 경우가 많습니다 -- 대신 pseudo-code 등으로 그 개념까지만 이해하는 것이죠. 그 아이디어를 Procedural(C, 어셈블리어)이나 Functional(LISP,Scheme,Haskel), OOP(Java,Smalltalk) 언어 등으로 직접 구현해 보는 겁니다. 이 다음에는 다른 사람(책)의 코드와 비교를 합니다. 이 경험을 애초에 박탈 당한 사람은 귀중한 배움과 깨달음의 기회를 잃은 셈입니다. 참고로 알고리즘 교재로는 10년에 한 번 나올까 말까한 CLR(''Introduction to Algorithms, Thomas H. Cormen, Charles E. Leiserson, and Ronald L. Rivest'')을 적극 추천합니다(이와 함께 혹은 이전에 Jon Bentley의 ''Programming Pearls''도 강력 추천합니다. 전세계의 짱짱한 프로그래머/전산학자들이 함께 꼽은 "위대한 책" 리스트에서 몇 손가락 안에 드는 책입니다. 아마 우리 학교 도서관에 있을 것인데, 아직 이 책을 본 적 없는 사람은 축하드립니다. 아마 몇 주 간은 감동 속에 하루하루를 보내게 될 겁니다.). 만약 함께 스터디를 한다면, 각자 동일한 아이디어를 (같은 언어로 혹은 다른 언어로) 어떻게 다르게 표현했는지를 서로 비교해 보면 또 배우는 것이 매우 많습니다. 우리가 자료구조나 알고리즘을 공부하는 이유는, 특정 "실세계의 문제"를 어떠한 "수학적 아이디어"로 매핑을 시켜서 해결하는 것이 가능하고 또 효율적이고, 또 이를 컴퓨터에 어떻게 구현하는 것이 가능하고 효율적인지를 따지기 위해서이며, 이 과정에 있어 수학적 개념을 프로그래밍 언어로 표현해 내는 것은 아주 중요한 능력이 됩니다. 개별 알고리즘의 카탈로그를 이해, 암기하며 익히는 것도 중요하지만 더 중요한 것은 알고리즘을 생각해 낼 수 있는 능력과 이 알고리즘의 효율을 비교할 수 있는 능력, 그리고 이를 표현할 수 있는 능력입니다.
  • IsDesignDead . . . . 1 match
          * http://jstorm.pe.kr/BBS/view.php3?id=106&code=Tip&start=0 - JStorm 진호선배 편역.
  • JTD 야구게임 짜던 코드. . . . . 1 match
         {{{~java code
  • JTDStudy/첫번째과제/영준 . . . . 1 match
         {{{~cpp code
  • JTDStudy/첫번째과제/원명 . . . . 1 match
         {{{~cpp code
  • JTDStudy/첫번째과제/원희 . . . . 1 match
         {{{~cpp code
  • JTDStudy/첫번째과제/장길 . . . . 1 match
         == testcode ==
  • Java Study2003/첫번째과제/노수민 . . . . 1 match
          * 자바 Applat 에서 - 자바 Bytescode는 소스를 자바 컴파일러로 컴파일한 결과물로서 HTML 문서에 비해 크기가 매우 크며 웹 서버에서 브라우저로 전송되기까지가 많은 시간이 걸린다. 일단 전송된 애플릿은 브라우저가 수행시키므로 그 속도는 클라이언트의 시스템 환경과 브라우저가 내장하고 있는 JVM의 성능에 따라 좌우된다. 28.8K 정도의 모뎀 환경이라면 그럴듯한 애플릿을 다운 받아서 수행하는데는 많은 인내심이 필요하게 된다. 그러나, 점차 인터넷 통신 환경이 좋아지고 있으며 가정집을 제외한 대부분의 사무실과 학교 등에서는 전용 회선이 깔려 있고, 넉넉한 환경의 전용선이라면 애플릿을 구동하는데 무리가 없다. 근래에는 가정에서도 초고속 통신 환경을 싼 값에 구축할 수 있으므로 점차적으로 인터넷 환경에서 애플릿의 전송은 부담이 되지 않을 것이다. JVM도 기술적으로 많이 향상되었고, Sun뿐 아니라, IBM과 같은 매머드급 회사들이 뛰어들어 개발하고 있어 초기 지적받았던 JVM의 구동 속도는 점차 문제가 되지 않는 상황이다.
  • JavaScript/2011년스터디/3월이전 . . . . 1 match
          * [http://www.yes24.com/24/goods/2943930?scode=032&OzSrank=1 자바스크립트 완벽 가이드]의 목차를 참고하여 진행한다.
  • JavaStudy2002/영동-3주차 . . . . 1 match
         사소한 것이지만 지적한다면 class main 의 이름을 Main 으로 바꾸시기를 강력(?) 추천합니다. Java 에는 지켜야하는 규칙인 문법외에 [http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html 코딩 약속]을 추천하고 있씁니다. 과거 MS라면 헝가리안표기법 이겠지요? 현재의 .net 에서 헝가리안표기법은 없어졌습니다. --["neocoin"]
  • JosephYoder방한번개모임 . . . . 1 match
          * throwaway code. 정말 한번만 쓰고 버린다. 다시는 돌아보지 말아야한다.
  • JumpJump/김태진 . . . . 1 match
         // codersHigh2013
  • KIV봉사활동/예산 . . . . 1 match
          * [http://item.gmarket.co.kr/challenge/neo_goods/goods.asp?goodscode=129914186 모기장] : 20500 원
  • LUA_1 . . . . 1 match
         루아의 공식 사이트는 http://www.lua.org/ 입니다. 하지막 MS-Windows 환경에서 루아를 시작하고 싶으시다면 http://code.google.com/p/luaforwindows/ 에서 루아 프로그램을 다운 받으실 수 있습니다. 우선 MS-Windows 환경이라고 가정하고 앞서 말한 사이트의 Download 페이지에서 LuaForWindows_v5.1.4-45.exe 를 다운 받습니다. 나중에는 버전명이 바뀐 바이너리 파일이겠죠. 이 파일을 다운로드 받아서 설치하면 시작>Programs>Lua>Lua (Command Line) 를 찾아 보실 수 있습니다. 해당 프로그램을 실행하면 Command 화면에 ">" 와 같은 입력 프롬프트를 확인하실 수 있습니다. 그럼 간단히 Hello world를 출력해 볼까요?
  • LightMoreLight/허아영 . . . . 1 match
         How do I code this contents??
  • Linux/MakingLinuxDaemon . . . . 1 match
         = sample code =
  • LinuxProgramming/QueryDomainname . . . . 1 match
         = sample code =
  • ListCtrl . . . . 1 match
          // TODO: Add your control notification handler code here
  • MFC/AddIn . . . . 1 match
          * Codewiz (http://www.sohva.org/CodeWiz2/)
         CrashReport 라는 것도 있다는데... code project 에서 참조하라고함. StarDock 이 이걸 이용했나본데;; dll이 있네;; - [eternalbleu]
  • MFCStudy_2002_2 . . . . 1 match
          * 아마.. 내가 이정도 때 했구나.. -_-;; 그때 딱 도움 되었던게.. 남의 source 훔쳐 보기. -_-+ www.codeguru.com 가서 많이 받아서 봤지.. -_-;; MFC 잘쓰는데는 꽤나 도움이 될거구만.. 뭐.. 거 가보면 mfc 내에서 엄청나게 상속받아서 지들이 만들어 놓은게 많아서 왠만한건 분석도 못하는게 많이 있지만. --; 그래도 도움 짱이지... 지금 쓰질 않아서.. -_-; 기억이 하나도 안나는구만. 에또.. 제프 아저씨와 찰스 아저씨의 책을 읽어 보도록 해요. --; 세미나 하는 사람들한테 물어봐 그건.. --;; 그럼.. 휘릭~ -- guts
  • MatrixAndQuaternionsFaq . . . . 1 match
          In the code snippets scattered throughout this document, a one-dimensional
  • Metaphor . . . . 1 match
         Choose a system metaphor to keep the team on the same page by naming classes and methods consistently. What you name your objects is very important for understanding the overall design of the system and code reuse as well. Being able to guess at what something might be named if it already existed and being right is a real time saver. Choose a system of names for your objects that everyone can relate to without specific, hard to earn knowledge about the system. For example the Chrysler payroll system was built as a production line. At Ford car sales were structured as a bill of materials. There is also a metaphor known as the naive metaphor which is based on your domain itself. But don't choose the naive metaphor unless it is simple enough.
  • MicrosoftFoundationClasses . . . . 1 match
         [http://www.codeproject.com/ Code Project]
  • MoinMoinDiscussion . . . . 1 match
          * '''Note:''' Regarding the upload feature - pls note that the PikiePikie also implemented in Python already has this feature, see http://pikie.darktech.org/cgi/pikie?UploadImage ... so I guess you could borrow some code from there :) -- J
  • MoinMoinDone . . . . 1 match
          * Inline code sections (triple-brace open and close on the same line, {{{~cpp like this}}} or {{{~cpp ThisFunctionWhichIsNotaWikiName()}}})
  • MoinMoinNotBugs . . . . 1 match
         This is not an Opera bug. The HTML is invalid. '''The blocks are overlapping, when they are not allowed to:''' P UL P /UL UL P /UL is not a sensible code sequence. (It should be P UL /UL P UL /UL P... giddyupgiddyup?)
  • MoniWikiPlugins . . . . 1 match
          * urlencode
  • MySQL . . . . 1 match
         jdbc:mysql://localhost/database?user=user&password=xxx&useUnicode=true&characterEncoding=KSC5601
  • MythicalManMonth . . . . 1 match
         number of software projects that delivered production code.
  • NSIS . . . . 1 match
          * http://www.nullsoft.com/free/nsis/makensitemplate.phtml - .nsi code generator
  • NSIS/Reference . . . . 1 match
         || ExecWait || command [user_var(exit code)] || 특정 프로그램을 실행시키고, 종료될 때까지 기다린다. ||
  • NSIS/예제1 . . . . 1 match
         Install code+strings: 525 / 944 bytes
  • NotToolsButConcepts . . . . 1 match
          blocking other team members who wait for you. Using a source code control
  • OOP . . . . 1 match
         Code is more easily reusable
         [http://www.codeproject.com/cpp/oopuml.asp UML&OOP]
  • ObjectProgrammingInC . . . . 1 match
         = sample code =
  • OurMajorLangIsCAndCPlusPlus/errno.h . . . . 1 match
         = Erro code =
  • OurMajorLangIsCAndCPlusPlus/setjmp.c . . . . 1 match
         // 1. Redistributions of source code must retain the above copyright
  • PNGFileFormat/ImageData . . . . 1 match
          * Compression method/flags code : 1 byte
  • PPProject/20041001FM . . . . 1 match
          알고리즘을 알아도 코드로 바로 풀어쓰기가 안 된다. 그럴 때는 가짜 코드(psuedo code)를 적어보는 것이 도움이 된다.
  • ParserMarket . . . . 1 match
         If you are not familiar with Python and/or the MoinMoin code base, but have a need or an idea for a parser, this is the place to ask for it. Someone might find it useful, too, and implement it.
  • ProgrammingPearls/Column5 . . . . 1 match
         === From Pseudocode to C ===
          * 참고서적 : Writing Solid Code
  • ProjectEazy/Source . . . . 1 match
         u = lambda x: unicode(x, "euc-kr")
  • ProjectGaia . . . . 1 match
          * [http://camellia.cse.cau.ac.kr/fs/FSBBS/board.asp?tb=fs_table&code=05484 수업 게시판]
  • ProjectWMB . . . . 1 match
          * Analysis code(Code reading)
  • PyIde . . . . 1 match
          * http://codespeak.net/pypy/ - 순수 파이썬으로 구현하는 python 이라고 한다. 관심이 가는중.
  • PythonForStatement . . . . 1 match
         {{|There are six sequence types: strings, Unicode strings, lists, tuples, buffers, and xrange objects|}}
  • RUR-PLE . . . . 1 match
          * [http://prdownloads.sourceforge.net/wxpython/wxPython2.6-win32-unicode-2.6.1.0-py24.exe wxPython다운로드]
  • ReadySet 번역처음화면 . . . . 1 match
         This project does not attempt to provide powerful tools for reorganizing the templates, mapping them to a given software development process, or generating templates from a underlying process model. This project does not include any application code for any tools, users simply use text editors to fill in or customize the templates.
  • Refactoring/BigRefactorings . . . . 1 match
          * You have code written in a procedural style.[[BR]]''Turn the date records into objects, break up the behavior, and move the behavior to the objects.''
  • ReverseAndAdd/김회영 . . . . 1 match
         == C code ==
  • ReverseAndAdd/신재동 . . . . 1 match
          마치 ''pseudo code''를 보는 것 같네요. --재동
  • ReverseAndAdd/임인택 . . . . 1 match
         === code ===
  • Ruby/2011년스터디 . . . . 1 match
          * [http://www.yes24.com/24/Goods/2314079?Acode=101 프로그래밍 루비]의 목차를 참고하여 진행
  • Ruby/2011년스터디/세미나 . . . . 1 match
          * [http://rubyforge.org/frs/?group_id=1109 RRobots]를 이용한 RubyLanguage Robocode
          * 를 하려고 했지만 tcl 문제로 CodeRace로 변경
          * '''레이튼 교수와 함께하는 CodeRace'''
          1. CodeRace를 준비하며 간단한 코드를 짜보았는데 생각보다 어려워서 역시 책만 읽어서는 안 되겠다는 생각이 들었습니다. 그냥 돌아가게 짜라면 짤 수 있겠는데 언어의 특성을 살려 ''우아하게'' 짜려니 어렵네요.
          1. 시간에 치여 준비했던 CodeRace를 못 한 것이 아쉽지만 시간이 좀 걸렸더라도 지혜가 RubyLanguage 문법을 설명할 때 다같이 실습하며 진행했던 것은 좋았습니다. 그냥 듣기만 했으면 지루하고 기억에 안 남았을지도 모르는데 직접 따라하며 문법을 익히는 방식이라 참여하신 다른 분들도 더 재미있고 뭔가 하나라도 기억에 확실히 남는 시간을 보내셨을거라는 생각이 드네요.
          1. 아쉽게도 못했던 CodeRace는 특별한 더 좋은 다른 일정이 없는 한 다음주나 다다음주 정모에서 진행하고자 합니다. - [김수경]
  • SLOC . . . . 1 match
         #Redirect Source_lines_of_code
  • STL/참고사이트 . . . . 1 match
         The Code Project, C++/STL/MFC 에 대한 소개 http://www.codeproject.com/cpp/stlintroduction.asp
  • SVN 사용법 . . . . 1 match
         4. 다운-> code 수정 후 commit
  • SeminarHowToProgramItAfterwords . . . . 1 match
          * ["1002"] : 어제 Test Code : Product Code 간 중복 (return 0 !) 을 OAOO로 풀어서 Refactoring 을 해야 할 상황으로 규정짓는다는 말이 뒤통수를 한대 때리는 기분이였습니다;;
          * TDD를 어설프게나마 시도하면서 느낀점이 'TDD 에서의 Product Code 는 오직 테스트 까지만 만족하는 코드인가' 였었는데. 한편으로는 이렇게 해석할 수 있겠더군요. '해당 스케일에 대해 더욱더 정확하게 작동하는 프로그램을 만들고 싶다면 그만큼 테스트 코드 양을 늘려라.' 테스트코드 자체가 일종의 Quality Assurance 를 위한 도큐먼트 역할도 된다는 점을 다시 생각하게 되었습니다.
          * 아까 발표때에도 이야기했지만, Code Review 를 위한 reverse-TDD (정도로 해둘까요? 이것도 관련 문서가 있을텐데. ) 를 해보는 것도 좋을 것 같네요. 코드 분석을 위한 test-code 작성이요. 즉, 이미 만들어져있는 코드를 테스트 코드라고 상정하고, 자신이 제대로 이해했는가에 대한 검증과정을 Test-Code 로 만드는 것이죠. 시간 있었으면 오늘 마저 시도해봤을텐데, 시간에 마음 쫓긴게 아쉽네요.
          * ["Refactoring"] 책에서는 ''Refactor As You Do Code Review'' 에 Code Review 를 위한 Refactoring을 이야기 하는데, Refactoring 을 위해서는 기본적으로 Test Code 가 필요하다고 할때 여기에 Test Code를 붙일테니까 상통하는 면이 있긴 하겠군요.
  • Slurpys/김회영 . . . . 1 match
         == Source code ==
  • Slurpys/박응용 . . . . 1 match
         ### test code ##########################################################
  • SmallTalk/강좌FromHitel/강의2 . . . . 1 match
          (source code)를 찾아내는 명령입니다. 3MB가 넘는 큰 용량의 파일을 뒤져서
  • SmallTalk/강좌FromHitel/강의4 . . . . 1 match
         찾아내는 명령입니다. 약 3M 이상 되는 바탕글(source code)에서 글귀를 찾
  • SmallTalk/강좌FromHitel/소개 . . . . 1 match
         더욱이 Smalltalk 언어의 바탕글(source code)을 보면 다른 언어들과 그 모양이
  • SmallTalk_Introduce . . . . 1 match
         더욱이 Smalltalk 언어의 바탕글(source code)을 보면 다른 언어들과 그 모양이
  • SummationOfFourPrimes/1002 . . . . 1 match
         맨 처음에 문제를 읽고 대략 연습장에 문제에의 각 변수들이 될만한 부분들을 보았다. 일단 소수들의 합이라 하고, 4자리의 합이라고 한다. 대략 pseudo code 를 다음와 같이 작성해보았다.
  • TCP/IP . . . . 1 match
          * http://cs.ecs.baylor.edu/~donahoo/practical/CSockets/textcode.html <Socket Programming for C>
  • TFP예제/WikiPageGather . . . . 1 match
          * '생각할 수 있는 가장 단순한 것부터 생각하라.' 디자인은 TFP 와 Refactoring의 과정만으로 어느정도 보장이 된다. TFP을 추구하는 이상 기능와 의도에 의한 모듈화가 기본적으로 이루어진다. (여태껏의 경험 -- 그래봤자 3번째지만 -- 에 의하면, TFP를 하면서 LongMethod 냄새가 난 적이 없었다. (LongMethod와 Bad Smell 에 대해서는 BadSmellsInCode를 참조하라.) 만일 중복코드 등의 문제가 발생하더라도 기존의 막무가내식 방식에 비해 그 빈도가 적다. 만일 Bad Smell 이 난다면 ["Refactoring"] 을 하면 된다. (참고로 밑의 소스는 ["Refactoring"]의 과정은 거치지 않았다.)
          * Python 이라는 툴이 참 재미있는 녀석이라 생각한다. 방식이야 basic에서의 그것이겠지만, '인터프리터언어라는 것이 쉽고 편하다' 의 이유를 다시 생각하게 해준 계기가 되었다. 일반적으로 우리가 프로그래밍을 할 때는 (여기서는 C++이라 하자) Visual C++ 을 하나만 띄어놓고 프로그래밍 하는 경우가 별로 없다. 보통 product code 를 위한 하나, 해당 함수 기능의 부분구현 (임시코드 구현)을 위한 하나. 서버-클라이언트 프로그래밍인 경우에는 3개를 띄우는 경우도 다반사이다. Python 의 shell 은 임시코드를 구현하는데 매우 편리한 도구이다. (한편 이쯤되면 검문이 필요하다. VS 2-3개 띄우는 거랑 python IDLE을 2-3개 띄우는 거랑 다를바가 뭐냐.. --; 내가 말하고 싶은 것은 C++이나 PHP에 파이썬처럼 공통 인터프리터 쉘이 있었으면 하는 것. -_a 흐흐..) 암튼. 나는 모인모인소스를 보면서 제목 검색 관련 일부 코드를 짤라서 쉘에서 간단히 실행해보고 검토하고 실제 소스에 적용해볼 수 있었다.
  • TemplateLibrary . . . . 1 match
         text 나 code generation 을 위한 라이브러리들을 일컫는 말.
  • Thor . . . . 1 match
          * 이영록 : ["ricoder"]
  • UnitTestFramework . . . . 1 match
         UnitTest code 작성을 위한 Framework
  • User Stories . . . . 1 match
         Developers estimate how long the stories might take to implement. Each story will get a 1, 2 or 3 week estimate in "ideal development time". This ideal development time is how long it would take to implement the story in code if there were no distractions, no other assignments, and you knew exactly what to do. Longer than 3 weeks means you need to break the story down further. Less than 1 week and you are at too detailed a level, combine some stories. About 80 user stories plus or minus 20 is a perfect number to create a release plan during release planning.
  • VonNeumannAirport/1002 . . . . 1 match
         여기까진 통과..~ test code 를 Refactoring 해봅니다.
         여기서 Test - Code 의 시간이 꽤 길었다. (9분) 함수 refinement 부분에서 STL 에 있는 find 함수를 함 써먹어 보려고 했다가;; 결국은 평소 하던데로 했다. ^^;
  • WikiTextFormattingTestPage . . . . 1 match
         verrry funny pictures for an old chinese; no more meaning like "FA3B27E5" or other Hex-Code
         Well, there's an answer, but not quite what I was looking for -- the <alt>159 syntax represents the ASCII codes from 0 to 255 (decimal). What does the <alt>0159 syntax represent?
  • WinampPluginProgramming/DSP . . . . 1 match
         // function that shares code for all your modules (you don't HAVE to use it though, you can make
  • ZPBoard/APM . . . . 1 match
          * http://www.codelib.co.kr
  • ZeroPageEvents . . . . 1 match
         || 7.15. 2002 ~ 7. 16. 2002 || ["2002년MT"] || ZeroPage MT~ || 김정훈(["정훈(K)의 페이지~"]), 신성재(["teruteruboz"]), 유상욱(["whiteblue"]), 이영록(["ricoder"]), 장재니(["E=mc²"]), 정재민(["Thor"]), ["창섭"], ["상협"], ["신재동"], 김남훈(["zennith"]), 강석천(["1002"], 류상민(["neocoin"]), 정해성(["phoenix_insky"]) ||
  • ZeroPageHistory . . . . 1 match
          * 데블스캠프 : Java, HTML, CSS, Scratch, SVN, Robocode, WinAPI, Abtraction, RootKit, OOP, MFC, MIDI, JavaScript, Short Coding
  • ZeroPageServer/IRC . . . . 1 match
          * 예전에 계획만 세워놓고 때려친 Jirconium을 다시 시작하면 될 듯합니다: http://code.google.com/p/jirconium
  • ZeroPage성년식/거의모든ZP의역사 . . . . 1 match
          * 데블스캠프 : Java, HTML, CSS, Scratch, SVN, Robocode, WinAPI, Abtraction, RootKit, OOP, MFC, MIDI, JavaScript, Short Coding
  • ZeroWikian . . . . 1 match
          * [ricoder]
  • [Lovely]boy^_^/Diary/12Rest . . . . 1 match
          * I code directX examples all day.--;
  • callusedHand/projects/algorithms . . . . 1 match
          * http://www.topcoder.com
  • eXtensibleStylesheetLanguageTransformations . . . . 1 match
         http://www.codeguru.com/Cpp/data/data-misc/xml/article.php/c4565
  • erunc0/OOP_UML . . . . 1 match
         http://www.codeproject.com/cpp/oopuml.asp
  • erunc0/RoboCode . . . . 1 match
         == What is RoboCode? ==
          * [http://www-903.ibm.com/developerworks/kr/robocode/ Korean IBM RoboCode site]
  • ricoder . . . . 1 match
          * 이영록 : ["ricoder"]
  • teruteruboz . . . . 1 match
          * 이영록 : ["ricoder"]
  • whiteblue . . . . 1 match
          *이영록 : ["ricoder"] [[BR]]
  • zennith/dummyfile . . . . 1 match
         == source code ==
  • 간단한C언어문제 . . . . 1 match
         char *b, msg[]="test code";
  • 경시대회준비반 . . . . 1 match
         [http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=dynProg Dynamic Programming: From novice to advanced] 읽어보세요.
  • 고한종/on-off를조절할수있는코드 . . . . 1 match
          //put your code in here.
  • 권영기/web crawler . . . . 1 match
         5. New Folder > /usr/lib/python2.7/dist-packages/wx-2.8-gtk2-unicode
  • 김해천 . . . . 1 match
          * code.bug.station@gmail.com
  • 김희성 . . . . 1 match
          * Google code jam korea 2012 : 예선 25점
  • 논문번역/2012년스터디/서민관 . . . . 1 match
         HMMs의 일반적인 구성을 위해 우리는 512개의 Gaussian mixtures with diagonal covariance matrices를 담고 있는 공유 codebook과 반-연속적인 시스템들을 이용하였다.
  • 니젤프림/BuilderPattern . . . . 1 match
         ==== Wikipedia 의 Java code ====
  • 다이얼로그박스의 엔터키 막기 . . . . 1 match
          // TODO: Add your specialized code here and/or call the base class
  • 데블스캠프/2013 . . . . 1 match
          || 1 |||| [Opening] |||| [새내기의,새내기에의한,새내기를위한C언어] |||| [http://zeropage.org/seminar/91465#0, GUI 다뤄보기] |||| |||| [Clean Code with Pair Programming] |||| OOP || 8 ||
          || 2 |||| [http://zeropage.org/seminar/91479#0 페이스북 게임 기획] |||| [새내기의,새내기에의한,새내기를위한C언어] |||| [http://zeropage.org/seminar/91465#0, GUI 다뤄보기] |||| |||| [Clean Code with Pair Programming] |||| OOP || 9 ||
          || 3 |||| [http://intra.zeropage.org:4000/DevilsCamp Git] |||| [새내기의,새내기에의한,새내기를위한C언어] |||| [http://zeropage.org/devils/91470#0, HTTP 프로토콜, C언어를 이용한 웹 서버 만들기] |||| |||| [Clean Code with Pair Programming] |||| [:WebKitGTK WebKitGTK+] || 10 ||
         || 송지원(16기) || [Clean Code with Pair Programming] ||
          * 옙 답변달았습니다. 더 많은 정보는 [https://trello.com/board/cleancode-study/51abfa4ab9c762c62000158a 트렐로]에 있을지도 모릅니다. 아카이빙을 잘 안해서.. - [서지혜]
  • 데블스캠프2005/RUR-PLE/Harvest . . . . 1 match
         #main source code
  • 데블스캠프2005/RUR-PLE/Harvest/김태훈-zyint . . . . 1 match
         # main source code #
  • 데블스캠프2005/RUR-PLE/Sorting . . . . 1 match
         # main source code #
  • 데블스캠프2005/목요일후기 . . . . 1 match
         3. Vpython code 금방 넘어감!
  • 데블스캠프2009/화요일후기 . . . . 1 match
         == Robocode - 장혁수 ==
  • 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/강성현 . . . . 1 match
         == Source Code ==
         import au.com.bytecode.opencsv.CSVReader;
  • 데블스캠프2011/셋째날/후기 . . . . 1 match
          * 새내기가 없어서 hardCore coderace로 변해버린 C언어 코딩. String을 만드는건 너무 힘들었다. 하지만 이렇게 스피드하게 한건 너무 오랜만이라 재미있었다. C++ 스트링클래스는 정말 예외처리가 많고 하다가 중간 중간 완성된것이나 예외처리 테스트를 만들어놨으면 나중에 더 빨리했을까했는데 너무 오래걸렸다는것이 아쉬웠다. 여튼 수고한 당신에게 박수를. =
  • 데블스캠프2012/셋째날/앵그리버드만들기 . . . . 1 match
         //input your javascript code!
  • 레밍즈프로젝트 . . . . 1 match
         [http://www.codeproject.com]
  • 무엇을공부할것인가 . . . . 1 match
          blocking other team members who wait for you. Using a source code control
  • 문자반대출력/임인택 . . . . 1 match
         code:
  • 문자반대출력/허아영 . . . . 1 match
          ascii code를 봐서 MSB ( most significant bit)가 1 이면 아마.. 2바이트문자일 겁니다.. - 임인택
  • 새싹교실/2011 . . . . 1 match
          프로그래밍 단계(code 작성->compile->link->generating .exe file)
  • 새싹교실/2011/學高/4회차 . . . . 1 match
         Ascii code는 외울 필요가 없다..
  • 새싹교실/2011/學高/8회차 . . . . 1 match
          // Input your code
  • 새싹교실/2011/씨언어발전/5회차 . . . . 1 match
          // put your code here
  • 새싹교실/2011/앞반뒷반그리고App반 . . . . 1 match
          * 오늘은 포인터를 배웠어요. ********별-. 선언할 때 int *a;로 선언하게 되면 *a는 a의 주소에 있는 값을 나타내는거였지요. 음.. 하다가 현 형이 하던 프로젝트에 잠깐 지워놓고 예시를 들었다가 xcode를 끄는 바람에 소스가 날라가버렸지요.... 포인터가 있으면 지정된 크기보다 큰 용량의 자료도 불러오기 쉽다는 것도 배웠구요. 아무튼 유용하게 쓸 수 있을거 같아요 -[김태진]
  • 새싹교실/2012/startLine . . . . 1 match
          * 0과 1으로 어떻게 글자를 표현하는가(ASCII code).
  • 새싹교실/2012/세싹 . . . . 1 match
          U8 Code[0x1AE];
          - http://www.codeproject.com/Articles/24415/How-to-read-dump-compare-registry-hives
          * Code jam으로 불태웠더니 시간이... - [김희성]
  • 새싹교실/2012/우리반 . . . . 1 match
         #include ----- => source=code 소스
          * ASCII Code 아스키코드 => char 에서 쓰이는 코드
  • 새싹교실/2012/주먹밥 . . . . 1 match
          * Google Code : http://code.google.com/intl/ko-KR/
  • 서지혜/Calendar . . . . 1 match
          * 글쿤 많이 지원하는구나.. 사실 attribute accessor나 lambda가 이해되는건아닌데ㅜㅜ attribute accessor가 어떻게 필드를 public처럼 접근가능하게 하면서 encapsulation을 지원하는지 잘 몰게뜸ㅠㅠ code block을 넘긴다는 말도 그렇고.. - [서지혜]
  • 서지혜/단어장 . . . . 1 match
          code wrangler(IT업계에서 관리자라는 말 처럼 쓰인다).
  • 스터디/Nand 2 Tetris . . . . 1 match
          * HDL Code
          // Put you code here:
  • 신기호/중대생rpg(ver1.0) . . . . 1 match
          * Total lines of code: 760(스압 주의)
  • 쓰레드에관한잡담 . . . . 1 match
         1. real-time process - 1.hard real-time(산업용), 2.soft real-time(vedio decoder 등)
  • 안혁준 . . . . 1 match
          * [http://nforge.zeropage.org/projects/davinchicode 09년도 JAVA 프로젝트/다빈치 코드]
  • 유용한팁들 . . . . 1 match
          * 원본 글 : [http://www.codeproject.com/useritems/Text_Indexer.asp]
  • 이민석 . . . . 1 match
          * jsfiddle: http://jsfiddle.net/user/codeonwort/
  • 인상깊은영화 . . . . 1 match
         [쿠도 준(타베 미카코) http://movie.naver.com/movie/bi/pi/basic.nhn?code=102482] 진짜 남자같아ㅋ
  • 임시 . . . . 1 match
         In the first stage, you will write a multi-threaded server that simply displays the contents of the HTTP request message that it receives. After this program is running properly, you will add the code required to generate an appropriate response.
  • 임인택/Temp . . . . 1 match
         http://zeropage.org/~dduk/dcmp/wxPython2.6-win32-unicode-2.6.0.1-py24.exe
  • 정모/2002.11.13 . . . . 1 match
         Recoder : xxx
  • 정모/2006.5.1 . . . . 1 match
         Upload:robocode3.avi
  • 정모/2012.7.18 . . . . 1 match
          * 안드로이드 도서관 - 학교 도서관의 도서 신청 과정이 무척 불편하다 -> 안드로이드로 책의 바코드를 찍으면 도서관에서 책이 신청 되도록 하는 것이 목표. 현재 바코드 처리 부분을 만들고 있음. [ISBN_Barcode_Image_Recognition]
  • 정모/2012.8.22 . . . . 1 match
          * [고한종]학우의 Mac | Xcode | iOS를 반년 정도 쓰면서 느낀 경험담. -매우 난잡함-
  • 정모/2013.4.8 . . . . 1 match
         = google code 잼 =
  • 정모/2013.7.8 . . . . 1 match
          * code formatting에 대한 내용을 공부. 프로젝트에 대한 것을 하나 정해서 그걸 리펙토링 하는 방향으로 진행 방향정함.
  • 제로Wiki . . . . 1 match
         code...
  • 제로스 . . . . 1 match
          * 우리 OS 직접 만들어보는 실습은 [http://www.kyobobook.co.kr/product/detailViewKor.laf?ejkGb=KOR&mallGb=KOR&barcode=9788979143256&orderClick=LAA 만들면서 배우는 OS 구조와 원리] 책이 좋지 않을까 싶은데 ㅋ 따라하기도 쉽고, 현태가 더 upgrade해서 만들 수 있는 부분이 있으면 코멘트 해주고 ㅋ- [김건영]
  • 졸업논문/본론 . . . . 1 match
         Django는 오픈 소스 프로젝트로 code.djangoproject.com/browser/django 에서 전체 소스코드를 확인할 수 있다. 문서에 따르면 django 데이터베이스 API는 "SQL문을 효율적으로 사용하고, 필요할 때는 알아서 join연산을 수행하는 강력한 구문을 가졌으며, 사용자가 필요할 경우 직접 SQL문을 작성할 수 있도록 지원"[5]한다. 추상화된 구문을 사용하더라도 데이터는 관계형 데이터베이스에 저장하게 되는데, MS SQL, MySQL, Oracle, PostgreSQL, SQLite3와 같은 DBMS를 사용할 수 있다.
  • 졸업논문/요약본 . . . . 1 match
         Web environment has became a standalone platform. Object-oriented languages, such as python, are suitable for web. Django is a web application framework written by python, and helps web developers writting web application more agile by abstracting database. Django provides high level abstraction on database, higher than CLI which uses ODBC. Django, for instance, creates database tables when developer writes classes in python, and modifies tables when developer modifies classes in python. In addition, django helps developers using database on host-language(python) level by abstracting insertion, deletion, update, retrieving of recodes to class method. Therefore, web developers make programs more agile.
  • 졸업논문/참고문헌 . . . . 1 match
         [8] http://code.djangoproject.com/browser/django/trunk/django/db/models/query.py
  • 코드레이스출동 . . . . 1 match
         [http://altlang.org/fest/CodeRace 대안언어에서의 코드레이스 페이지]
         [http://oss.or.kr/coderace/index.html 온라인 등록]
         [코드레이스출동/CleanCode] : 재선, 회영, 도현, 용재
  • 토비의스프링3 . . . . 1 match
          * [http://www.yes24.com/24/Goods/4020006?Acode=101 토비의 스프링 3]
  • 토비의스프링3/오브젝트와의존관계 . . . . 1 match
          * [http://www.yes24.com/24/goods/267290?scode=029 리팩토링](마틴 파울러, 켄트 벡 공저)
  • 튜터링/2011/어셈블리언어 . . . . 1 match
         .code
  • 튜터링/2013/Assembly . . . . 1 match
          .code
  • 프로그래밍 . . . . 1 match
          * [http://www.topcoder.com]
  • 호너의법칙/박영창 . . . . 1 match
         = code =
Found 347 matching pages out of 7540 total pages (5000 pages are searched)

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
Processing time 1.0353 sec